upgrade gems + update license copyright + fix issue #326 + don't minify assets when serving a site locally
did
committed Mar 10, 2017
commit f3f75d752ccb5ba98f63da50f43d6acc2e7893ee
Showing 16
changed files with
2227 additions
and 4360 deletions
.travis.yml
+6
-2
| @@ | @@ -1,7 +1,11 @@ |
| language: ruby | |
| rvm: | |
| - | - 2.1.1 |
| + | - 2.3.3 |
| before_install: | |
| - export TZ=Paris | |
| - date | |
| - | |
| + | addons: |
| + | code_climate: |
| + | repo_token: 8d9c25de4eff1cd06d3accdc09775397e1a81be67e2a159453ba4e4408acae16 |
| + | after_success: |
| + | - bundle exec codeclimate-test-reporter |
Gemfile
+7
-4
| @@ | @@ -8,7 +8,8 @@ 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: 'b1feb8b', require: false |
| + | # gem 'locomotivecms_steam', github: 'locomotivecms/steam', ref: 'b1feb8b', require: false |
| + | # gem 'duktape', github: 'judofyr/duktape.rb', ref: '20ef6a5' |
| # Local development | |
| # gem 'locomotivecms_coal', path: '../gems/coal', require: false | |
| @@ | @@ -16,15 +17,17 @@ gem 'locomotivecms_steam', github: 'locomotivecms/steam', ref: 'b1feb8b', requ |
| # gem 'locomotivecms_common', path: '../gems/common', require: false | |
| group :development, :test do | |
| - | gem 'pry-byebug', '~> 3.1.0' |
| + | gem 'pry-byebug', '~> 3.4.2' |
| end | |
| group :test do | |
| - | gem 'rspec', '~> 3.2.0' |
| + | gem 'rspec', '~> 3.5.0' |
| gem 'json_spec', '~> 1.1.4' | |
| gem 'webmock' | |
| gem 'vcr' | |
| - | gem 'coveralls', '~> 0.7.11', require: false |
| + | gem 'simplecov' |
| + | gem 'codeclimate-test-reporter', '~> 1.0.7', require: false |
| + | gem 'coveralls', '~> 0.8.19', require: false |
| end | |
LICENSE.txt
+2
-2
| @@ | @@ -1,4 +1,4 @@ |
| - | Copyright (c) 2012 Didier Lafforgue |
| + | Copyright (c) 2017 NoCoffee |
| MIT License | |
| @@ | @@ -19,4 +19,4 @@ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE | |
| LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION | |
| OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | |
| - | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| \ No newline at end of file | |
| + | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
README.md
+1
-1
| @@ | @@ -61,4 +61,4 @@ Please, visit the documentation website of Locomotive. |
| Feel free to contact me (did at locomotivecms dot com). | |
| - | Copyright (c) 2016 NoCoffee, released under the MIT license |
| + | Copyright (c) 2017 NoCoffee, released under the MIT license |
Rakefile
+2
-10
| @@ | @@ -8,22 +8,14 @@ require 'rake' |
| require 'vcr' | |
| require 'rspec' | |
| require 'rspec/core/rake_task' | |
| - | require 'rubygems/package_task' |
| $LOAD_PATH.unshift File.expand_path('../lib', __FILE__) | |
| require 'locomotive/wagon' | |
| require 'locomotive/wagon/version' | |
| - | gemspec = eval(File.read('locomotivecms_wagon.gemspec')) |
| - | Gem::PackageTask.new(gemspec) do |pkg| |
| - | pkg.gem_spec = gemspec |
| - | end |
| - | |
| - | desc 'build the gem and release it to rubygems.org' |
| - | task release: :gem do |
| - | sh "gem push pkg/locomotivecms_wagon-#{gemspec.version}.gem" |
| - | end |
| + | # === Gems install tasks === |
| + | Bundler::GemHelper.install_tasks |
| require 'rspec/core/rake_task' | |
| RSpec::Core::RakeTask.new('spec') | |
locomotive/wagon/commands/push_sub_commands/push_theme_assets_command.rb b/lib/locomotive/wagon/commands/push_sub_commands/push_theme_assets_command.rb
+2
-2
| @@ | @@ -88,8 +88,8 @@ module Locomotive::Wagon |
| def compress_and_minify(entity) | |
| begin | |
| sprockets_env[entity.short_relative_url].to_s | |
| - | rescue Locomotive::Steam::YUICompressorRuntimeError => e |
| - | instrument :warning, message: "Unable to compress and minify it, number of errors (#{e.errors.size})\n#{e.errors.join("\n")}" |
| + | rescue Exception => e |
| + | instrument :warning, message: "Unable to compress and minify it, error: #{e.message}" |
| # use the original file instead | |
| File.read(File.join(path, entity.source)) | |
| end | |
locomotive/wagon/commands/serve_command.rb b/lib/locomotive/wagon/commands/serve_command.rb
+4
-3
| @@ | @@ -75,9 +75,10 @@ module Locomotive::Wagon |
| subscribe_to_notifications | |
| Locomotive::Steam.configure do |config| | |
| - | config.mode = :test |
| - | config.adapter = { name: :filesystem, path: File.expand_path(path) } |
| - | config.asset_path = File.expand_path(File.join(path, 'public')) |
| + | config.mode = :test |
| + | config.adapter = { name: :filesystem, path: File.expand_path(path) } |
| + | config.asset_path = File.expand_path(File.join(path, 'public')) |
| + | config.minify_assets = false |
| if (port = options[:live_reload_port]).to_i > 0 | |
| require 'rack-livereload' | |
locomotivecms_wagon.gemspec
+7
-8
| @@ | @@ -21,19 +21,18 @@ Gem::Specification.new do |gem| |
| gem.add_development_dependency 'rake', '~> 10.0.4' | |
| - | gem.add_dependency 'thor', '~> 0.19.1' |
| - | gem.add_dependency 'thin', '~> 1.6.3' |
| - | gem.add_dependency 'rubyzip', '~> 1.1.7' |
| - | gem.add_dependency 'netrc', '~> 0.10.3' |
| + | gem.add_dependency 'thor', '~> 0.19.4' |
| + | gem.add_dependency 'thin', '~> 1.7.0' |
| + | gem.add_dependency 'rubyzip', '~> 1.2.1' |
| + | gem.add_dependency 'netrc', '~> 0.11.0' |
| gem.add_dependency 'locomotivecms_common', '~> 0.2.0' | |
| - | gem.add_dependency 'locomotivecms_coal', '~> 1.3.0' |
| - | gem.add_dependency 'locomotivecms_steam', '~> 1.3.0' |
| + | gem.add_dependency 'locomotivecms_coal', '~> 1.4.0' |
| + | gem.add_dependency 'locomotivecms_steam', '~> 1.3.0.rc1' |
| gem.add_dependency 'haml', '~> 4.0.7' | |
| - | gem.add_dependency 'listen', '~> 3.0.4' |
| + | gem.add_dependency 'listen', '~> 3.1.5' |
| gem.add_dependency 'rack-livereload', '~> 0.3.16' | |
| - | gem.add_dependency 'yui-compressor', '~> 0.12.0' |
| gem.add_dependency 'faker', '~> 1.6' | |
| end | |
spec/fixtures/cassettes/authenticate.yml
+38
-38
| @@ | @@ -8,13 +8,13 @@ http_interactions: |
| string: email=john%40doe.net&password=asimplepassword | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:04 GMT |
| + | - Thu, 09 Mar 2017 14:24:46 GMT |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -29,16 +29,16 @@ http_interactions: |
| Cache-Control: | |
| - no-cache | |
| X-Request-Id: | |
| - | - b0c718fe-9812-411b-9824-367063c7c7c8 |
| + | - e772514a-8b0c-44d6-b12a-d1ecc1d344f9 |
| X-Runtime: | |
| - | - '0.641600' |
| + | - '0.508672' |
| Content-Length: | |
| - '40' | |
| body: | |
| encoding: UTF-8 | |
| string: '{"message":"Invalid email or password."}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:05 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:46 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/my_account.json | |
| @@ | @@ -47,13 +47,13 @@ http_interactions: |
| string: account%5Bemail%5D=john%40doe.net&account%5Bname%5D=John&account%5Bpassword%5D=asimplepassword | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:05 GMT |
| + | - Thu, 09 Mar 2017 14:24:46 GMT |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -64,20 +64,20 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"0e3f9d0daf88f8fd4f0a2ec082a5a7e5" |
| + | - W/"80947389622b7865dea7bb4de66d8b0d" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - ca31d12a-1fbb-41c6-a7eb-f2f36de12f0b |
| + | - c4df15b8-239a-4fec-b053-5333d1f5015b |
| X-Runtime: | |
| - | - '0.158071' |
| + | - '0.099810' |
| Content-Length: | |
| - '250' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae7d87f6437d12223b7e","created_at":"2016-06-17T08:02:05Z","updated_at":"2016-06-17T08:02:05Z","name":"John","email":"john@doe.net","locale":"en","api_key":"f3d9eb1da9dd7d755bf61cb78040eb3ac20054b7","super_admin":false,"local_admin":false}' |
| + | string: '{"_id":"58c165ae87f64357b620337c","created_at":"2017-03-09T14:24:46Z","updated_at":"2017-03-09T14:24:46Z","name":"John","email":"john@doe.net","locale":"en","api_key":"87ca7099bd26190211ba75867a64c96616a22bd9","super_admin":false,"local_admin":false}' |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:05 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:47 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/tokens.json | |
| @@ | @@ -86,13 +86,13 @@ http_interactions: |
| string: email=admin%40locomotivecms.com&password=locomotive | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:05 GMT |
| + | - Thu, 09 Mar 2017 14:24:47 GMT |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -103,39 +103,39 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"454972cc6e9c77359905d2dea5ba89ee" |
| + | - W/"547737c117de5d58a73948ce621cc79b" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - cb777707-131e-4a7b-beff-040b267ac2c6 |
| + | - 402d1585-4162-4c82-8482-1a02b1bc4d4e |
| X-Runtime: | |
| - | - '0.022266' |
| + | - '0.020225' |
| Content-Length: | |
| - '32' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"token":"HyqKxyBLmEH9x_GzYnWY"}' |
| + | string: '{"token":"2A9iTQyoACHbA4eAVLCH"}' |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:05 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:47 GMT |
| - request: | |
| method: get | |
| - | uri: http://localhost:3000/locomotive/api/v3/my_account.json?auth_token=HyqKxyBLmEH9x_GzYnWY |
| + | uri: http://localhost:3000/locomotive/api/v3/my_account.json?auth_token=2A9iTQyoACHbA4eAVLCH |
| body: | |
| encoding: UTF-8 | |
| string: '' | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:05 GMT |
| + | - Thu, 09 Mar 2017 14:24:47 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -144,39 +144,39 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"7560269880972609752ff82cb3ed592f" |
| + | - W/"c10610a4a1a6b959915b802428da94ef" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 4fab7136-9216-46fb-a2ce-f25e5b40ca17 |
| + | - 3c64529c-1b7f-476b-bcf6-7937615c86a6 |
| X-Runtime: | |
| - | - '0.037894' |
| + | - '0.032035' |
| Content-Length: | |
| - '261' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ad8487f6437cec5812c1","created_at":"2016-06-17T07:57:56Z","updated_at":"2016-06-17T07:57:56Z","name":"Admin","email":"admin@locomotivecms.com","locale":"en","api_key":"d49cd50f6f0d2b163f48fc73cb249f0244c37074","super_admin":false,"local_admin":true}' |
| + | string: '{"_id":"58c1659187f6435785cff941","created_at":"2017-03-09T14:24:17Z","updated_at":"2017-03-09T14:24:17Z","name":"Admin","email":"admin@locomotivecms.com","locale":"en","api_key":"d49cd50f6f0d2b163f48fc73cb249f0244c37074","super_admin":false,"local_admin":true}' |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:05 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:47 GMT |
| - request: | |
| method: get | |
| - | uri: http://localhost:3000/locomotive/api/v3/my_account.json?auth_token=HyqKxyBLmEH9x_GzYnWY |
| + | uri: http://localhost:3000/locomotive/api/v3/my_account.json?auth_token=2A9iTQyoACHbA4eAVLCH |
| body: | |
| encoding: UTF-8 | |
| string: '' | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:05 GMT |
| + | - Thu, 09 Mar 2017 14:24:47 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -185,18 +185,18 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"7560269880972609752ff82cb3ed592f" |
| + | - W/"c10610a4a1a6b959915b802428da94ef" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - ad034495-4fa7-42ab-9176-e24422eef3ff |
| + | - 6b1170a3-ec03-4a8c-b841-3c9cdb1f6ea8 |
| X-Runtime: | |
| - | - '0.025608' |
| + | - '0.019497' |
| Content-Length: | |
| - '261' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ad8487f6437cec5812c1","created_at":"2016-06-17T07:57:56Z","updated_at":"2016-06-17T07:57:56Z","name":"Admin","email":"admin@locomotivecms.com","locale":"en","api_key":"d49cd50f6f0d2b163f48fc73cb249f0244c37074","super_admin":false,"local_admin":true}' |
| + | string: '{"_id":"58c1659187f6435785cff941","created_at":"2017-03-09T14:24:17Z","updated_at":"2017-03-09T14:24:17Z","name":"Admin","email":"admin@locomotivecms.com","locale":"en","api_key":"d49cd50f6f0d2b163f48fc73cb249f0244c37074","super_admin":false,"local_admin":true}' |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:05 GMT |
| - | recorded_with: VCR 3.0.1 |
| + | recorded_at: Thu, 09 Mar 2017 14:24:47 GMT |
| + | recorded_with: VCR 3.0.3 |
spec/fixtures/cassettes/delete.yml
+208
-208
| @@ | @@ -8,13 +8,13 @@ http_interactions: |
| string: api_key=d49cd50f6f0d2b163f48fc73cb249f0244c37074&email=admin%40locomotivecms.com | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:05 GMT |
| + | - Thu, 09 Mar 2017 14:24:47 GMT |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -25,39 +25,39 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"454972cc6e9c77359905d2dea5ba89ee" |
| + | - W/"547737c117de5d58a73948ce621cc79b" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - a4daf3ff-2882-45f2-95f2-1a731977faf2 |
| + | - f4e3136c-6974-4d93-9e16-a7ee19dae942 |
| X-Runtime: | |
| - | - '0.020263' |
| + | - '0.019361' |
| Content-Length: | |
| - '32' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"token":"HyqKxyBLmEH9x_GzYnWY"}' |
| + | string: '{"token":"2A9iTQyoACHbA4eAVLCH"}' |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:05 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:47 GMT |
| - request: | |
| method: post | |
| uri: http://www.example.com:3000/locomotive/api/v3/sites.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&site%5Bhandle%5D=short-lived&site%5Bname%5D=ShortLived |
| + | string: auth_token=2A9iTQyoACHbA4eAVLCH&site%5Bhandle%5D=short-lived&site%5Bname%5D=ShortLived |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:05 GMT |
| + | - Thu, 09 Mar 2017 14:24:47 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -68,20 +68,20 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"277cc7d9c525bbf5ca43a8979eb7ff09" |
| + | - W/"9c5662f7349d5b8e9a4139c67be75a07" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - d0f02d1d-ee66-455d-9bf3-f802f9463ba7 |
| + | - aa129fd6-b451-4d8d-a8c3-1ab6c0fa61c8 |
| X-Runtime: | |
| - | - '1.191048' |
| + | - '0.961354' |
| Content-Length: | |
| - '840' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae7d87f6437d12223b7f","created_at":"2016-06-17T08:02:05Z","updated_at":"2016-06-17T08:02:06Z","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":"5763ae7d87f6437d12223b80","created_at":null,"updated_at":null,"role":"admin","account_id":"5763ad8487f6437cec5812c1","name":"Admin","role_name":"Administrator","email":"admin@locomotivecms.com"}],"timezone":"UTC","picture_url":null,"content_version":0,"template_version":1466150526,"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":"{}"}' |
| + | string: '{"_id":"58c165af87f64357b620337d","created_at":"2017-03-09T14:24:47Z","updated_at":"2017-03-09T14:24:48Z","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":"58c165af87f64357b620337e","created_at":null,"updated_at":null,"role":"admin","account_id":"58c1659187f6435785cff941","name":"Admin","role_name":"Administrator","email":"admin@locomotivecms.com"}],"timezone":"UTC","picture_url":null,"content_version":0,"template_version":1489069488,"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: Fri, 17 Jun 2016 08:02:07 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:48 GMT |
| - request: | |
| method: post | |
| uri: http://www.example.com:3000/locomotive/api/v3/tokens.json | |
| @@ | @@ -90,13 +90,13 @@ http_interactions: |
| string: api_key=d49cd50f6f0d2b163f48fc73cb249f0244c37074&email=admin%40locomotivecms.com | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:07 GMT |
| + | - Thu, 09 Mar 2017 14:24:48 GMT |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -107,39 +107,39 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"454972cc6e9c77359905d2dea5ba89ee" |
| + | - W/"547737c117de5d58a73948ce621cc79b" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - ca06fd7f-d15d-4634-a3c0-4fa16943758c |
| + | - 3ec0dacd-a581-4d23-bb91-04374483e80e |
| X-Runtime: | |
| - | - '0.017046' |
| + | - '0.019442' |
| Content-Length: | |
| - '32' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"token":"HyqKxyBLmEH9x_GzYnWY"}' |
| + | string: '{"token":"2A9iTQyoACHbA4eAVLCH"}' |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:07 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:48 GMT |
| - request: | |
| method: delete | |
| - | uri: http://www.example.com:3000/locomotive/api/v3/current_site.json?auth_token=HyqKxyBLmEH9x_GzYnWY |
| + | uri: http://www.example.com:3000/locomotive/api/v3/current_site.json?auth_token=2A9iTQyoACHbA4eAVLCH |
| body: | |
| encoding: UTF-8 | |
| string: '' | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:07 GMT |
| + | - Thu, 09 Mar 2017 14:24:48 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - short-lived | |
| response: | |
| @@ | @@ -150,39 +150,39 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"277cc7d9c525bbf5ca43a8979eb7ff09" |
| + | - W/"9c5662f7349d5b8e9a4139c67be75a07" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - e10375b3-a33e-45a1-9f11-58b21b76adcd |
| + | - 92a22b77-494d-4a8f-8d93-57c02c7b38e9 |
| X-Runtime: | |
| - | - '0.201654' |
| + | - '0.223332' |
| Content-Length: | |
| - '840' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae7d87f6437d12223b7f","created_at":"2016-06-17T08:02:05Z","updated_at":"2016-06-17T08:02:06Z","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":"5763ae7d87f6437d12223b80","created_at":null,"updated_at":null,"role":"admin","account_id":"5763ad8487f6437cec5812c1","name":"Admin","role_name":"Administrator","email":"admin@locomotivecms.com"}],"timezone":"UTC","picture_url":null,"content_version":0,"template_version":1466150526,"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":"{}"}' |
| + | string: '{"_id":"58c165af87f64357b620337d","created_at":"2017-03-09T14:24:47Z","updated_at":"2017-03-09T14:24:48Z","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":"58c165af87f64357b620337e","created_at":null,"updated_at":null,"role":"admin","account_id":"58c1659187f6435785cff941","name":"Admin","role_name":"Administrator","email":"admin@locomotivecms.com"}],"timezone":"UTC","picture_url":null,"content_version":0,"template_version":1489069488,"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: Fri, 17 Jun 2016 08:02:07 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:48 GMT |
| - request: | |
| method: post | |
| uri: http://www.example.com:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&page%5Bparent%5D=index&page%5Bslug%5D=hello-world&page%5Btemplate%5D=Hello+world%21&page%5Btitle%5D=Hello+world |
| + | string: auth_token=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:07 GMT |
| + | - Thu, 09 Mar 2017 14:24:48 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - www | |
| Content-Type: | |
| @@ | @@ -195,41 +195,41 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"ae76eab664fa1c1112a0f84300eef91d" |
| + | - W/"711839c39a110dae8384e454bffa2c2e" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 151a74bc-15e9-47d1-a01c-f02917e2e639 |
| + | - dd8fd0bb-8ab5-4108-b70a-1dcb441e737c |
| X-Runtime: | |
| - | - '0.062264' |
| + | - '0.071354' |
| Content-Length: | |
| - '673' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae7f87f6437d12223b84","created_at":"2016-06-17T08:02:07Z","updated_at":"2016-06-17T08:02:07Z","title":"Hello |
| - | world","parent_id":"5763ad8487f6437cec5812c4","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":"58c165b087f64357b6203382","created_at":"2017-03-09T14:24:48Z","updated_at":"2017-03-09T14:24:48Z","title":"Hello |
| + | world","parent_id":"58c1659187f6435785cff944","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: Fri, 17 Jun 2016 08:02:07 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:48 GMT |
| - request: | |
| method: delete | |
| - | uri: http://www.example.com:3000/locomotive/api/v3/pages/hello-world.json?auth_token=HyqKxyBLmEH9x_GzYnWY |
| + | uri: http://www.example.com:3000/locomotive/api/v3/pages/hello-world.json?auth_token=2A9iTQyoACHbA4eAVLCH |
| body: | |
| encoding: UTF-8 | |
| string: '' | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:07 GMT |
| + | - Thu, 09 Mar 2017 14:24:48 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - www | |
| response: | |
| @@ | @@ -240,41 +240,41 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"ae76eab664fa1c1112a0f84300eef91d" |
| + | - W/"711839c39a110dae8384e454bffa2c2e" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 858142cb-f3c3-44f4-aaba-a67f4f534225 |
| + | - ed3d32a5-cf48-4497-bf6b-f87809461d39 |
| X-Runtime: | |
| - | - '0.035328' |
| + | - '0.050278' |
| Content-Length: | |
| - '673' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae7f87f6437d12223b84","created_at":"2016-06-17T08:02:07Z","updated_at":"2016-06-17T08:02:07Z","title":"Hello |
| - | world","parent_id":"5763ad8487f6437cec5812c4","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":"58c165b087f64357b6203382","created_at":"2017-03-09T14:24:48Z","updated_at":"2017-03-09T14:24:48Z","title":"Hello |
| + | world","parent_id":"58c1659187f6435785cff944","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: Fri, 17 Jun 2016 08:02:07 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:48 GMT |
| - request: | |
| method: post | |
| uri: http://www.example.com:3000/locomotive/api/v3/content_types.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:07 GMT |
| + | - Thu, 09 Mar 2017 14:24:48 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - www | |
| Content-Type: | |
| @@ | @@ -287,39 +287,39 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"0d2bf4ecd7730399c5bed8e5d4c3afb2" |
| + | - W/"7cd0a1382d21cd253eb4074bc6694c36" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 26394048-c7f4-4e7e-acd0-3d895cf2f939 |
| + | - '07809931-fd5a-45a3-8e8b-c22c8f63f150' |
| X-Runtime: | |
| - | - '0.114527' |
| + | - '0.113182' |
| Content-Length: | |
| - '691' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae7f87f6437d12223b85","created_at":"2016-06-17T08:02:07Z","updated_at":"2016-06-17T08:02:07Z","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,"filter_fields":null,"fields":[{"_id":"5763ae7f87f6437d12223b86","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":"58c165b087f64357b6203383","created_at":"2017-03-09T14:24:48Z","updated_at":"2017-03-09T14:24:48Z","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,"filter_fields":null,"fields":[{"_id":"58c165b087f64357b6203384","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: Fri, 17 Jun 2016 08:02:07 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:48 GMT |
| - request: | |
| method: delete | |
| - | uri: http://www.example.com:3000/locomotive/api/v3/content_types/fake_messages.json?auth_token=HyqKxyBLmEH9x_GzYnWY |
| + | uri: http://www.example.com:3000/locomotive/api/v3/content_types/fake_messages.json?auth_token=2A9iTQyoACHbA4eAVLCH |
| body: | |
| encoding: UTF-8 | |
| string: '' | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:07 GMT |
| + | - Thu, 09 Mar 2017 14:24:48 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - www | |
| response: | |
| @@ | @@ -330,39 +330,39 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"0d2bf4ecd7730399c5bed8e5d4c3afb2" |
| + | - W/"7cd0a1382d21cd253eb4074bc6694c36" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 320b7dd1-0177-4e96-8b6e-6979dbf44bd7 |
| + | - 92978019-43ae-48a0-a386-17afde7277b4 |
| X-Runtime: | |
| - | - '0.036183' |
| + | - '0.043263' |
| Content-Length: | |
| - '691' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae7f87f6437d12223b85","created_at":"2016-06-17T08:02:07Z","updated_at":"2016-06-17T08:02:07Z","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,"filter_fields":null,"fields":[{"_id":"5763ae7f87f6437d12223b86","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":"58c165b087f64357b6203383","created_at":"2017-03-09T14:24:48Z","updated_at":"2017-03-09T14:24:48Z","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,"filter_fields":null,"fields":[{"_id":"58c165b087f64357b6203384","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: Fri, 17 Jun 2016 08:02:07 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:48 GMT |
| - request: | |
| method: post | |
| uri: http://www.example.com:3000/locomotive/api/v3/content_types.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:07 GMT |
| + | - Thu, 09 Mar 2017 14:24:48 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - www | |
| Content-Type: | |
| @@ | @@ -375,39 +375,39 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"c548e3b143bac5b945b4c9ed55314728" |
| + | - W/"193203c0b426677b0276df4710c55a3a" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 26ccea4e-b648-4c0a-aa99-320839ecde17 |
| + | - 4b1f8781-788f-47ed-8d66-a17cbdd41f76 |
| X-Runtime: | |
| - | - '0.047121' |
| + | - '0.050253' |
| Content-Length: | |
| - '693' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae7f87f6437d12223b87","created_at":"2016-06-17T08:02:07Z","updated_at":"2016-06-17T08:02:07Z","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,"filter_fields":null,"fields":[{"_id":"5763ae7f87f6437d12223b88","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":"58c165b087f64357b6203385","created_at":"2017-03-09T14:24:48Z","updated_at":"2017-03-09T14:24:48Z","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,"filter_fields":null,"fields":[{"_id":"58c165b087f64357b6203386","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: Fri, 17 Jun 2016 08:02:07 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:48 GMT |
| - request: | |
| method: delete | |
| - | uri: http://www.example.com:3000/locomotive/api/v3/content_types.json?auth_token=HyqKxyBLmEH9x_GzYnWY |
| + | uri: http://www.example.com:3000/locomotive/api/v3/content_types.json?auth_token=2A9iTQyoACHbA4eAVLCH |
| body: | |
| encoding: UTF-8 | |
| string: '' | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:07 GMT |
| + | - Thu, 09 Mar 2017 14:24:48 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - www | |
| response: | |
| @@ | @@ -422,35 +422,35 @@ http_interactions: |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 27590310-28f3-4329-a788-141e7710cb94 |
| + | - 6e20673c-e0f8-49e8-999e-4bbc5d2bb363 |
| X-Runtime: | |
| - | - '0.034409' |
| + | - '0.045258' |
| Content-Length: | |
| - '15' | |
| body: | |
| encoding: UTF-8 | |
| string: '{"deletions":1}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:07 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:48 GMT |
| - request: | |
| method: post | |
| uri: http://www.example.com:3000/locomotive/api/v3/snippets.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&snippet%5Bname%5D=Analytics&snippet%5Bslug%5D=analytics&snippet%5Btemplate%5D=Analytics |
| + | string: auth_token=2A9iTQyoACHbA4eAVLCH&snippet%5Bname%5D=Analytics&snippet%5Bslug%5D=analytics&snippet%5Btemplate%5D=Analytics |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:07 GMT |
| + | - Thu, 09 Mar 2017 14:24:48 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - www | |
| Content-Type: | |
| @@ | @@ -463,39 +463,39 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"6b6551e3b59a6b9dde20cd4c381cf779" |
| + | - W/"52958b747865a3d7f75b3e1b38ee2441" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - b503a753-4be3-4fe3-9ab3-ab1e7d29c975 |
| + | - 658a6327-1071-4c6e-b6a8-030e157092c7 |
| X-Runtime: | |
| - | - '0.084400' |
| + | - '0.099406' |
| Content-Length: | |
| - '167' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae7f87f6437d12223b89","created_at":"2016-06-17T08:02:07Z","updated_at":"2016-06-17T08:02:07Z","name":"Analytics","slug":"analytics","template":"Analytics"}' |
| + | string: '{"_id":"58c165b187f64357b6203387","created_at":"2017-03-09T14:24:49Z","updated_at":"2017-03-09T14:24:49Z","name":"Analytics","slug":"analytics","template":"Analytics"}' |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:07 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:49 GMT |
| - request: | |
| method: delete | |
| - | uri: http://www.example.com:3000/locomotive/api/v3/snippets/analytics.json?auth_token=HyqKxyBLmEH9x_GzYnWY |
| + | uri: http://www.example.com:3000/locomotive/api/v3/snippets/analytics.json?auth_token=2A9iTQyoACHbA4eAVLCH |
| body: | |
| encoding: UTF-8 | |
| string: '' | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:07 GMT |
| + | - Thu, 09 Mar 2017 14:24:49 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - www | |
| response: | |
| @@ | @@ -506,39 +506,39 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"6b6551e3b59a6b9dde20cd4c381cf779" |
| + | - W/"52958b747865a3d7f75b3e1b38ee2441" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - ecd1aeb1-1d1e-4ea7-9d46-539d3e805220 |
| + | - 2892568a-2268-43a2-8ec2-f7996c71fe06 |
| X-Runtime: | |
| - | - '0.030254' |
| + | - '0.059281' |
| Content-Length: | |
| - '167' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae7f87f6437d12223b89","created_at":"2016-06-17T08:02:07Z","updated_at":"2016-06-17T08:02:07Z","name":"Analytics","slug":"analytics","template":"Analytics"}' |
| + | string: '{"_id":"58c165b187f64357b6203387","created_at":"2017-03-09T14:24:49Z","updated_at":"2017-03-09T14:24:49Z","name":"Analytics","slug":"analytics","template":"Analytics"}' |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:07 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:49 GMT |
| - request: | |
| method: post | |
| uri: http://www.example.com:3000/locomotive/api/v3/snippets.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&snippet%5Bname%5D=Analytics&snippet%5Bslug%5D=analytics_2&snippet%5Btemplate%5D=Analytics |
| + | string: auth_token=2A9iTQyoACHbA4eAVLCH&snippet%5Bname%5D=Analytics&snippet%5Bslug%5D=analytics_2&snippet%5Btemplate%5D=Analytics |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:07 GMT |
| + | - Thu, 09 Mar 2017 14:24:49 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - www | |
| Content-Type: | |
| @@ | @@ -551,39 +551,39 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"aff42b680bd58012ef5d3d32020b7581" |
| + | - W/"8b8ad0274071c24d0f712db24add7b9f" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 7f87a76f-c036-44d8-9f56-5d8845d4afee |
| + | - e0b32e45-3dc2-4d7c-9702-aa5fb6021e25 |
| X-Runtime: | |
| - | - '0.037287' |
| + | - '0.034582' |
| Content-Length: | |
| - '169' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae7f87f6437d12223b8a","created_at":"2016-06-17T08:02:07Z","updated_at":"2016-06-17T08:02:07Z","name":"Analytics","slug":"analytics_2","template":"Analytics"}' |
| + | string: '{"_id":"58c165b187f64357b6203388","created_at":"2017-03-09T14:24:49Z","updated_at":"2017-03-09T14:24:49Z","name":"Analytics","slug":"analytics_2","template":"Analytics"}' |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:08 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:49 GMT |
| - request: | |
| method: delete | |
| - | uri: http://www.example.com:3000/locomotive/api/v3/snippets.json?auth_token=HyqKxyBLmEH9x_GzYnWY |
| + | uri: http://www.example.com:3000/locomotive/api/v3/snippets.json?auth_token=2A9iTQyoACHbA4eAVLCH |
| body: | |
| encoding: UTF-8 | |
| string: '' | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:08 GMT |
| + | - Thu, 09 Mar 2017 14:24:49 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - www | |
| response: | |
| @@ | @@ -598,16 +598,16 @@ http_interactions: |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 901cd7e1-6dda-4462-a8dc-41415d2a48cf |
| + | - 9b5f83a5-2197-41c6-9895-bea058c81302 |
| X-Runtime: | |
| - | - '0.029534' |
| + | - '0.034609' |
| Content-Length: | |
| - '15' | |
| body: | |
| encoding: UTF-8 | |
| string: '{"deletions":1}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:08 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:49 GMT |
| - request: | |
| method: post | |
| uri: http://www.example.com:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -682,21 +682,21 @@ http_interactions: |
| 0NtJvy6mWF/OpLQstGgVzsab3sXmi3+2zzQDcJjnAyEPROMHiFLOL3h0hr9D | |
| onww/wNwYOCiTn4FhQAAAABJRU5ErkJggg0KLS0tLS0tLS0tLS0tLVJ1YnlN | |
| dWx0aXBhcnRQb3N0DQpDb250ZW50LURpc3Bvc2l0aW9uOiBmb3JtLWRhdGE7 | |
| - | IG5hbWU9ImF1dGhfdG9rZW4iDQoNCkh5cUt4eUJMbUVIOXhfR3pZbldZDQot |
| + | IG5hbWU9ImF1dGhfdG9rZW4iDQoNCjJBOWlUUXlvQUNIYkE0ZUFWTENIDQot |
| LS0tLS0tLS0tLS0tUnVieU11bHRpcGFydFBvc3QtLQ0KDQo= | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:08 GMT |
| + | - Thu, 09 Mar 2017 14:24:49 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - www | |
| Content-Type: | |
| @@ | @@ -711,21 +711,21 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"ce77ed40701675225cc1e941e57c2aa8" |
| + | - W/"46956a0299de0e2d59b782db7a8c2225" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 33cb48a6-984a-4f52-9317-3baccaca29b5 |
| + | - 1142fc1f-4e87-4eef-9940-3fe894d70bc1 |
| X-Runtime: | |
| - | - '0.277495' |
| + | - '0.298878' |
| Content-Length: | |
| - '341' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8087f6437d12223b8b","created_at":"2016-06-17T08:02:08Z","updated_at":"2016-06-17T08:02:08Z","content_type":"image","local_path":"images/icon.png","folder":"images","checksum":"3176de8c86ae69c06d4f0ed37e26cee4","filename":"icon.png","url":"/sites/5763ad8487f6437cec5812c3/theme/images/icon.png","size":"2.72 |
| + | string: '{"_id":"58c165b187f64357b6203389","created_at":"2017-03-09T14:24:49Z","updated_at":"2017-03-09T14:24:49Z","content_type":"image","local_path":"images/icon.png","folder":"images","checksum":"3176de8c86ae69c06d4f0ed37e26cee4","filename":"icon.png","url":"/sites/58c1659187f6435785cff943/theme/images/icon.png","size":"2.72 |
| KB","raw_size":2783}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:08 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:49 GMT |
| - request: | |
| method: post | |
| uri: http://www.example.com:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -4371,21 +4371,21 @@ http_interactions: |
| nTZLWAn75+Cpv212Dv47zCzY/KTGgbiqWWzt8uMma7Z1/2bHBIaHmNbSlxEx | |
| sfX/CzAAkCOO6w6jXtcAAAAASUVORK5CYIINCi0tLS0tLS0tLS0tLS1SdWJ5 | |
| TXVsdGlwYXJ0UG9zdA0KQ29udGVudC1EaXNwb3NpdGlvbjogZm9ybS1kYXRh | |
| - | OyBuYW1lPSJhdXRoX3Rva2VuIg0KDQpIeXFLeHlCTG1FSDl4X0d6WW5XWQ0K |
| + | OyBuYW1lPSJhdXRoX3Rva2VuIg0KDQoyQTlpVFF5b0FDSGJBNGVBVkxDSA0K |
| LS0tLS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0LS0NCg0K | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:08 GMT |
| + | - Thu, 09 Mar 2017 14:24:49 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - www | |
| Content-Type: | |
| @@ | @@ -4400,40 +4400,40 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"7d864e9688cc0d48dc21abba55a36ecb" |
| + | - W/"9bc930c8032b270ea3a1cd3a5dd8f3e9" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 290804d7-c16b-4b97-88ba-04f1f7bebf53 |
| + | - 7a67ef97-811a-4fb5-bf5e-c5602e4c9a8f |
| X-Runtime: | |
| - | - '0.058432' |
| + | - '0.062310' |
| Content-Length: | |
| - '345' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8087f6437d12223b8c","created_at":"2016-06-17T08:02:08Z","updated_at":"2016-06-17T08:02:08Z","content_type":"image","local_path":"images/photo.jpg","folder":"images","checksum":"e1aff5628ca068751b333cf1b69dd978","filename":"photo.jpg","url":"/sites/5763ad8487f6437cec5812c3/theme/images/photo.jpg","size":"160 |
| + | string: '{"_id":"58c165b187f64357b620338a","created_at":"2017-03-09T14:24:49Z","updated_at":"2017-03-09T14:24:49Z","content_type":"image","local_path":"images/photo.jpg","folder":"images","checksum":"e1aff5628ca068751b333cf1b69dd978","filename":"photo.jpg","url":"/sites/58c1659187f6435785cff943/theme/images/photo.jpg","size":"160 |
| KB","raw_size":163476}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:08 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:49 GMT |
| - request: | |
| method: delete | |
| - | uri: http://www.example.com:3000/locomotive/api/v3/theme_assets.json?auth_token=HyqKxyBLmEH9x_GzYnWY |
| + | uri: http://www.example.com:3000/locomotive/api/v3/theme_assets.json?auth_token=2A9iTQyoACHbA4eAVLCH |
| body: | |
| encoding: UTF-8 | |
| string: '' | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:08 GMT |
| + | - Thu, 09 Mar 2017 14:24:49 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - www | |
| response: | |
| @@ | @@ -4448,35 +4448,35 @@ http_interactions: |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 0e313f16-8938-4ea8-adc6-c10c9efc4223 |
| + | - b2ecd46e-46b1-42ec-b8bb-e1977c406b16 |
| X-Runtime: | |
| - | - '0.053444' |
| + | - '0.055389' |
| Content-Length: | |
| - '15' | |
| body: | |
| encoding: UTF-8 | |
| string: '{"deletions":2}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:08 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:49 GMT |
| - request: | |
| method: post | |
| uri: http://www.example.com:3000/locomotive/api/v3/translations.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&translation%5Bkey%5D=hello_world&translation%5Bvalues%5D%5Bfr%5D=Bonjour+le+monde |
| + | string: auth_token=2A9iTQyoACHbA4eAVLCH&translation%5Bkey%5D=hello_world&translation%5Bvalues%5D%5Bfr%5D=Bonjour+le+monde |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:08 GMT |
| + | - Thu, 09 Mar 2017 14:24:49 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - www | |
| Content-Type: | |
| @@ | @@ -4489,40 +4489,40 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"f75c994542d487d6f35ac3aeceb303bd" |
| + | - W/"f2950385ec1e2d7e459260ffa5544c56" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - b8eca1c6-8681-4f0f-b337-5b92ad22ee37 |
| + | - 811789f0-9785-4deb-9e3c-ad420509e6f6 |
| X-Runtime: | |
| - | - '0.103986' |
| + | - '0.088557' |
| Content-Length: | |
| - '161' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8087f6437d12223b8d","created_at":"2016-06-17T08:02:08Z","updated_at":"2016-06-17T08:02:08Z","key":"hello_world","values":{"fr":"Bonjour |
| + | string: '{"_id":"58c165b187f64357b620338b","created_at":"2017-03-09T14:24:49Z","updated_at":"2017-03-09T14:24:49Z","key":"hello_world","values":{"fr":"Bonjour |
| le monde"}}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:08 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:49 GMT |
| - request: | |
| method: delete | |
| - | uri: http://www.example.com:3000/locomotive/api/v3/translations/hello_world.json?auth_token=HyqKxyBLmEH9x_GzYnWY |
| + | uri: http://www.example.com:3000/locomotive/api/v3/translations/hello_world.json?auth_token=2A9iTQyoACHbA4eAVLCH |
| body: | |
| encoding: UTF-8 | |
| string: '' | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:08 GMT |
| + | - Thu, 09 Mar 2017 14:24:49 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - www | |
| response: | |
| @@ | @@ -4533,40 +4533,40 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"f75c994542d487d6f35ac3aeceb303bd" |
| + | - W/"f2950385ec1e2d7e459260ffa5544c56" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 156e4b7c-083c-4d24-aacc-023ab775ffc4 |
| + | - 3526c5e0-1cfb-46df-9b09-4b0c83dcc0e9 |
| X-Runtime: | |
| - | - '0.062938' |
| + | - '0.036821' |
| Content-Length: | |
| - '161' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8087f6437d12223b8d","created_at":"2016-06-17T08:02:08Z","updated_at":"2016-06-17T08:02:08Z","key":"hello_world","values":{"fr":"Bonjour |
| + | string: '{"_id":"58c165b187f64357b620338b","created_at":"2017-03-09T14:24:49Z","updated_at":"2017-03-09T14:24:49Z","key":"hello_world","values":{"fr":"Bonjour |
| le monde"}}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:08 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:49 GMT |
| - request: | |
| method: post | |
| uri: http://www.example.com:3000/locomotive/api/v3/translations.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&translation%5Bkey%5D=hello_world_2&translation%5Bvalues%5D%5Bfr%5D=Bonjour+le+monde |
| + | string: auth_token=2A9iTQyoACHbA4eAVLCH&translation%5Bkey%5D=hello_world_2&translation%5Bvalues%5D%5Bfr%5D=Bonjour+le+monde |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:08 GMT |
| + | - Thu, 09 Mar 2017 14:24:50 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - www | |
| Content-Type: | |
| @@ | @@ -4579,40 +4579,40 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"ed3818b1198d679f4f3688efe3a3403a" |
| + | - W/"bbc1404ab24f4694bfa11e392aaf2f92" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 95737fa1-402b-467a-8da0-2c2b4691a4d0 |
| + | - 3ece265e-48fd-4f6f-8904-c59262a2cc5e |
| X-Runtime: | |
| - | - '0.048713' |
| + | - '0.039149' |
| Content-Length: | |
| - '163' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8087f6437d12223b8e","created_at":"2016-06-17T08:02:08Z","updated_at":"2016-06-17T08:02:08Z","key":"hello_world_2","values":{"fr":"Bonjour |
| + | string: '{"_id":"58c165b287f64357b620338c","created_at":"2017-03-09T14:24:50Z","updated_at":"2017-03-09T14:24:50Z","key":"hello_world_2","values":{"fr":"Bonjour |
| le monde"}}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:08 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:50 GMT |
| - request: | |
| method: delete | |
| - | uri: http://www.example.com:3000/locomotive/api/v3/translations.json?auth_token=HyqKxyBLmEH9x_GzYnWY |
| + | uri: http://www.example.com:3000/locomotive/api/v3/translations.json?auth_token=2A9iTQyoACHbA4eAVLCH |
| body: | |
| encoding: UTF-8 | |
| string: '' | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:08 GMT |
| + | - Thu, 09 Mar 2017 14:24:50 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - www | |
| response: | |
| @@ | @@ -4627,35 +4627,35 @@ http_interactions: |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - a0aaadce-52d0-474c-984e-28186d8cbd75 |
| + | - c0715ba3-f227-407b-a545-0edc8dd7b3bd |
| X-Runtime: | |
| - | - '0.042653' |
| + | - '0.060256' |
| Content-Length: | |
| - '15' | |
| body: | |
| encoding: UTF-8 | |
| string: '{"deletions":1}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:09 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:50 GMT |
| - request: | |
| method: delete | |
| - | uri: http://www.example.com:3000/locomotive/api/v3/pages/bogus_id.json?auth_token=HyqKxyBLmEH9x_GzYnWY |
| + | uri: http://www.example.com:3000/locomotive/api/v3/pages/bogus_id.json?auth_token=2A9iTQyoACHbA4eAVLCH |
| body: | |
| encoding: UTF-8 | |
| string: '' | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:09 GMT |
| + | - Thu, 09 Mar 2017 14:24:50 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - www | |
| response: | |
| @@ | @@ -4668,35 +4668,35 @@ http_interactions: |
| Cache-Control: | |
| - no-cache | |
| X-Request-Id: | |
| - | - 5b207004-a23b-4d02-8c7b-873911e895d1 |
| + | - 6883fb5b-77ee-4f10-8349-613c5cdad5bb |
| X-Runtime: | |
| - | - '0.043482' |
| + | - '0.028538' |
| Content-Length: | |
| - '30' | |
| body: | |
| encoding: UTF-8 | |
| string: '{"error":"Resource not found"}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:09 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:50 GMT |
| - request: | |
| method: delete | |
| - | uri: http://www.example.com:3000/locomotive/api/v3/content_types/bogus_id.json?auth_token=HyqKxyBLmEH9x_GzYnWY |
| + | uri: http://www.example.com:3000/locomotive/api/v3/content_types/bogus_id.json?auth_token=2A9iTQyoACHbA4eAVLCH |
| body: | |
| encoding: UTF-8 | |
| string: '' | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:09 GMT |
| + | - Thu, 09 Mar 2017 14:24:50 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - www | |
| response: | |
| @@ | @@ -4709,35 +4709,35 @@ http_interactions: |
| Cache-Control: | |
| - no-cache | |
| X-Request-Id: | |
| - | - f729e0ca-557c-46ad-a3ac-04675daa129e |
| + | - e5cdab5a-9312-4faa-aaca-f783c8e2019a |
| X-Runtime: | |
| - | - '0.032370' |
| + | - '0.028470' |
| Content-Length: | |
| - '30' | |
| body: | |
| encoding: UTF-8 | |
| string: '{"error":"Resource not found"}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:09 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:50 GMT |
| - request: | |
| method: delete | |
| - | uri: http://www.example.com:3000/locomotive/api/v3/snippets/bogus_id.json?auth_token=HyqKxyBLmEH9x_GzYnWY |
| + | uri: http://www.example.com:3000/locomotive/api/v3/snippets/bogus_id.json?auth_token=2A9iTQyoACHbA4eAVLCH |
| body: | |
| encoding: UTF-8 | |
| string: '' | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:09 GMT |
| + | - Thu, 09 Mar 2017 14:24:50 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - www | |
| response: | |
| @@ | @@ -4750,35 +4750,35 @@ http_interactions: |
| Cache-Control: | |
| - no-cache | |
| X-Request-Id: | |
| - | - 9d70bbc9-bc0c-4751-9ce1-11696bc586ba |
| + | - 35be52fd-3f3e-4498-8b85-3a861e4b3eda |
| X-Runtime: | |
| - | - '0.037359' |
| + | - '0.024891' |
| Content-Length: | |
| - '30' | |
| body: | |
| encoding: UTF-8 | |
| string: '{"error":"Resource not found"}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:09 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:50 GMT |
| - request: | |
| method: delete | |
| - | uri: http://www.example.com:3000/locomotive/api/v3/translations/bogus_id.json?auth_token=HyqKxyBLmEH9x_GzYnWY |
| + | uri: http://www.example.com:3000/locomotive/api/v3/translations/bogus_id.json?auth_token=2A9iTQyoACHbA4eAVLCH |
| body: | |
| encoding: UTF-8 | |
| string: '' | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:09 GMT |
| + | - Thu, 09 Mar 2017 14:24:50 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - www | |
| response: | |
| @@ | @@ -4791,14 +4791,14 @@ http_interactions: |
| Cache-Control: | |
| - no-cache | |
| X-Request-Id: | |
| - | - 07a61a7f-3246-4a2a-85d2-6e285054f146 |
| + | - 8408b965-a5ef-4040-a5a7-23941d4a4b08 |
| X-Runtime: | |
| - | - '0.069625' |
| + | - '0.024278' |
| Content-Length: | |
| - '30' | |
| body: | |
| encoding: UTF-8 | |
| string: '{"error":"Resource not found"}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:09 GMT |
| - | recorded_with: VCR 3.0.1 |
| + | recorded_at: Thu, 09 Mar 2017 14:24:50 GMT |
| + | recorded_with: VCR 3.0.3 |
spec/fixtures/cassettes/push.yml
+1945
-1945
| @@ | @@ -8,13 +8,13 @@ http_interactions: |
| string: api_key=d49cd50f6f0d2b163f48fc73cb249f0244c37074&email=admin%40locomotivecms.com | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:10 GMT |
| + | - Thu, 09 Mar 2017 14:24:51 GMT |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -25,20 +25,20 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"454972cc6e9c77359905d2dea5ba89ee" |
| + | - W/"547737c117de5d58a73948ce621cc79b" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - a943b0a2-91c5-486e-bf7a-d2c7550b022a |
| + | - 56c74159-aee6-4553-8987-79f9686db0f8 |
| X-Runtime: | |
| - | - '0.017402' |
| + | - '0.016183' |
| Content-Length: | |
| - '32' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"token":"HyqKxyBLmEH9x_GzYnWY"}' |
| + | string: '{"token":"2A9iTQyoACHbA4eAVLCH"}' |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:10 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:51 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/sites.json | |
| @@ | @@ -139,21 +139,21 @@ http_interactions: |
| cG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0ic2l0ZVttZXRhZmllbGRzX3Nj | |
| aGVtYV0iDQoNCltdDQotLS0tLS0tLS0tLS0tUnVieU11bHRpcGFydFBvc3QN | |
| CkNvbnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0iYXV0aF90 | |
| - | b2tlbiINCg0KSHlxS3h5QkxtRUg5eF9HelluV1kNCi0tLS0tLS0tLS0tLS1S |
| + | b2tlbiINCg0KMkE5aVRReW9BQ0hiQTRlQVZMQ0gNCi0tLS0tLS0tLS0tLS1S |
| dWJ5TXVsdGlwYXJ0UG9zdC0tDQoNCg== | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:10 GMT |
| + | - Thu, 09 Mar 2017 14:24:51 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| @@ | @@ -166,21 +166,21 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"cb0a6af9e53285186a462690b36c7d27" |
| + | - W/"4f7d10d82b74114fbde4bed8dc54dc12" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 34fdc356-ef45-4696-ba58-00b66442588e |
| + | - 313d33de-3dd8-4b1b-a30b-2f595a5a05d0 |
| X-Runtime: | |
| - | - '0.092280' |
| + | - '0.142967' |
| Content-Length: | |
| - | - '1057' |
| + | - '1071' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8287f6437d12223b8f","created_at":"2016-06-17T08:02:10Z","updated_at":"2016-06-17T08:02:11Z","name":"Sample |
| - | website","handle":"gentle-desert-808","seo_title":null,"meta_keywords":null,"meta_description":"","robots_txt":null,"cache_enabled":false,"private_access":false,"locales":["en"],"domains":[],"memberships":[{"_id":"5763ae8287f6437d12223b90","created_at":null,"updated_at":null,"role":"admin","account_id":"5763ad8487f6437cec5812c1","name":"Admin","role_name":"Administrator","email":"admin@locomotivecms.com"}],"timezone":"UTC","picture_url":"/uploaded_assets/5763ae8287f6437d12223b8f/icon.png","content_version":0,"template_version":1466150531,"picture_thumbnail_url":"/images/dynamic/W1siZmYiLCJwdWJsaWMvdXBsb2FkZWRfYXNzZXRzLzU3NjNhZTgyODdmNjQzN2QxMjIyM2I4Zi9pY29uLnBuZyJdLFsicCIsInRodW1iIiwiMTAweDEwMCMiXV0/icon.png?sha=1d2655a4381031e9","preview_url":"http://localhost:3000/locomotive/gentle-desert-808/preview","sign_in_url":"http://localhost:3000/locomotive/sign_in","metafields":"{}","metafields_schema":"[]","metafields_ui":"{}"}' |
| + | string: '{"_id":"58c165b387f64357b620338d","created_at":"2017-03-09T14:24:51Z","updated_at":"2017-03-09T14:24:51Z","name":"Sample |
| + | website","handle":"benevolent-waterfall-850","seo_title":null,"meta_keywords":null,"meta_description":"","robots_txt":null,"cache_enabled":false,"private_access":false,"locales":["en"],"domains":[],"memberships":[{"_id":"58c165b387f64357b620338e","created_at":null,"updated_at":null,"role":"admin","account_id":"58c1659187f6435785cff941","name":"Admin","role_name":"Administrator","email":"admin@locomotivecms.com"}],"timezone":"UTC","picture_url":"/uploaded_assets/58c165b387f64357b620338d/icon.png","content_version":0,"template_version":1489069491,"picture_thumbnail_url":"/images/dynamic/W1siZmYiLCJwdWJsaWMvdXBsb2FkZWRfYXNzZXRzLzU4YzE2NWIzODdmNjQzNTdiNjIwMzM4ZC9pY29uLnBuZyJdLFsicCIsInRodW1iIiwiMTAweDEwMCMiXV0/icon.png?sha=1f41e0d8860d3695","preview_url":"http://localhost:3000/locomotive/benevolent-waterfall-850/preview","sign_in_url":"http://localhost:3000/locomotive/sign_in","metafields":"{}","metafields_schema":"[]","metafields_ui":"{}"}' |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:11 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:51 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/tokens.json | |
| @@ | @@ -189,13 +189,13 @@ http_interactions: |
| string: api_key=d49cd50f6f0d2b163f48fc73cb249f0244c37074&email=admin%40locomotivecms.com | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:11 GMT |
| + | - Thu, 09 Mar 2017 14:24:51 GMT |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -206,41 +206,41 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"454972cc6e9c77359905d2dea5ba89ee" |
| + | - W/"547737c117de5d58a73948ce621cc79b" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 3df5a5f8-253c-44db-aacd-89c15e0857eb |
| + | - 52dd27e0-b59b-4dba-a687-bafd41ae074e |
| X-Runtime: | |
| - | - '0.018441' |
| + | - '0.017922' |
| Content-Length: | |
| - '32' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"token":"HyqKxyBLmEH9x_GzYnWY"}' |
| + | string: '{"token":"2A9iTQyoACHbA4eAVLCH"}' |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:11 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:51 GMT |
| - request: | |
| method: get | |
| - | uri: http://localhost:3000/locomotive/api/v3/current_site.json?auth_token=HyqKxyBLmEH9x_GzYnWY |
| + | uri: http://localhost:3000/locomotive/api/v3/current_site.json?auth_token=2A9iTQyoACHbA4eAVLCH |
| body: | |
| encoding: UTF-8 | |
| string: '' | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:11 GMT |
| + | - Thu, 09 Mar 2017 14:24:51 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - '' | |
| response: | |
| @@ | @@ -251,42 +251,42 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"cb0a6af9e53285186a462690b36c7d27" |
| + | - W/"4f7d10d82b74114fbde4bed8dc54dc12" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 62690ad7-d580-4fcd-987b-4fd77617beb0 |
| + | - 754b0645-b2a7-4d06-8325-bda27602ccf1 |
| X-Runtime: | |
| - | - '0.041097' |
| + | - '0.046147' |
| Content-Length: | |
| - | - '1057' |
| + | - '1071' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8287f6437d12223b8f","created_at":"2016-06-17T08:02:10Z","updated_at":"2016-06-17T08:02:11Z","name":"Sample |
| - | website","handle":"gentle-desert-808","seo_title":null,"meta_keywords":null,"meta_description":"","robots_txt":null,"cache_enabled":false,"private_access":false,"locales":["en"],"domains":[],"memberships":[{"_id":"5763ae8287f6437d12223b90","created_at":null,"updated_at":null,"role":"admin","account_id":"5763ad8487f6437cec5812c1","name":"Admin","role_name":"Administrator","email":"admin@locomotivecms.com"}],"timezone":"UTC","picture_url":"/uploaded_assets/5763ae8287f6437d12223b8f/icon.png","content_version":0,"template_version":1466150531,"picture_thumbnail_url":"/images/dynamic/W1siZmYiLCJwdWJsaWMvdXBsb2FkZWRfYXNzZXRzLzU3NjNhZTgyODdmNjQzN2QxMjIyM2I4Zi9pY29uLnBuZyJdLFsicCIsInRodW1iIiwiMTAweDEwMCMiXV0/icon.png?sha=1d2655a4381031e9","preview_url":"http://localhost:3000/locomotive/gentle-desert-808/preview","sign_in_url":"http://localhost:3000/locomotive/sign_in","metafields":"{}","metafields_schema":"[]","metafields_ui":"{}"}' |
| + | string: '{"_id":"58c165b387f64357b620338d","created_at":"2017-03-09T14:24:51Z","updated_at":"2017-03-09T14:24:51Z","name":"Sample |
| + | website","handle":"benevolent-waterfall-850","seo_title":null,"meta_keywords":null,"meta_description":"","robots_txt":null,"cache_enabled":false,"private_access":false,"locales":["en"],"domains":[],"memberships":[{"_id":"58c165b387f64357b620338e","created_at":null,"updated_at":null,"role":"admin","account_id":"58c1659187f6435785cff941","name":"Admin","role_name":"Administrator","email":"admin@locomotivecms.com"}],"timezone":"UTC","picture_url":"/uploaded_assets/58c165b387f64357b620338d/icon.png","content_version":0,"template_version":1489069491,"picture_thumbnail_url":"/images/dynamic/W1siZmYiLCJwdWJsaWMvdXBsb2FkZWRfYXNzZXRzLzU4YzE2NWIzODdmNjQzNTdiNjIwMzM4ZC9pY29uLnBuZyJdLFsicCIsInRodW1iIiwiMTAweDEwMCMiXV0/icon.png?sha=1f41e0d8860d3695","preview_url":"http://localhost:3000/locomotive/benevolent-waterfall-850/preview","sign_in_url":"http://localhost:3000/locomotive/sign_in","metafields":"{}","metafields_schema":"[]","metafields_ui":"{}"}' |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:11 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:51 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/current_site.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:11 GMT |
| + | - Thu, 09 Mar 2017 14:24:51 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -297,42 +297,42 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"8c9c8a97a6f38c77511a381f8df35a0a" |
| + | - W/"0a7a2be605cdb145690c5cd87cba9774" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 03ef2809-def1-47e7-8b7e-274266a02c61 |
| + | - 646837dd-83f3-4b5a-9fe1-3e3ec90fc34b |
| X-Runtime: | |
| - | - '0.088521' |
| + | - '0.114486' |
| Content-Length: | |
| - | - '1076' |
| + | - '1090' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8287f6437d12223b8f","created_at":"2016-06-17T08:02:10Z","updated_at":"2016-06-17T08:02:11Z","name":"Sample |
| - | website","handle":"gentle-desert-808","seo_title":null,"meta_keywords":null,"meta_description":"","robots_txt":null,"cache_enabled":false,"private_access":false,"locales":["en","fr","nb"],"domains":[],"memberships":[{"_id":"5763ae8287f6437d12223b90","created_at":null,"updated_at":null,"role":"admin","account_id":"5763ad8487f6437cec5812c1","name":"Admin","role_name":"Administrator","email":"admin@locomotivecms.com"}],"timezone":"UTC","picture_url":"/uploaded_assets/5763ae8287f6437d12223b8f/icon.png","content_version":1466150531,"template_version":1466150531,"picture_thumbnail_url":"/images/dynamic/W1siZmYiLCJwdWJsaWMvdXBsb2FkZWRfYXNzZXRzLzU3NjNhZTgyODdmNjQzN2QxMjIyM2I4Zi9pY29uLnBuZyJdLFsicCIsInRodW1iIiwiMTAweDEwMCMiXV0/icon.png?sha=1d2655a4381031e9","preview_url":"http://localhost:3000/locomotive/gentle-desert-808/preview","sign_in_url":"http://localhost:3000/locomotive/sign_in","metafields":"{}","metafields_schema":"[]","metafields_ui":"{}"}' |
| + | string: '{"_id":"58c165b387f64357b620338d","created_at":"2017-03-09T14:24:51Z","updated_at":"2017-03-09T14:24:51Z","name":"Sample |
| + | website","handle":"benevolent-waterfall-850","seo_title":null,"meta_keywords":null,"meta_description":"","robots_txt":null,"cache_enabled":false,"private_access":false,"locales":["en","fr","nb"],"domains":[],"memberships":[{"_id":"58c165b387f64357b620338e","created_at":null,"updated_at":null,"role":"admin","account_id":"58c1659187f6435785cff941","name":"Admin","role_name":"Administrator","email":"admin@locomotivecms.com"}],"timezone":"UTC","picture_url":"/uploaded_assets/58c165b387f64357b620338d/icon.png","content_version":1489069491,"template_version":1489069491,"picture_thumbnail_url":"/images/dynamic/W1siZmYiLCJwdWJsaWMvdXBsb2FkZWRfYXNzZXRzLzU4YzE2NWIzODdmNjQzNTdiNjIwMzM4ZC9pY29uLnBuZyJdLFsicCIsInRodW1iIiwiMTAweDEwMCMiXV0/icon.png?sha=1f41e0d8860d3695","preview_url":"http://localhost:3000/locomotive/benevolent-waterfall-850/preview","sign_in_url":"http://localhost:3000/locomotive/sign_in","metafields":"{}","metafields_schema":"[]","metafields_ui":"{}"}' |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:11 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:51 GMT |
| - request: | |
| method: get | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types.json?auth_token=HyqKxyBLmEH9x_GzYnWY |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types.json?auth_token=2A9iTQyoACHbA4eAVLCH |
| body: | |
| encoding: UTF-8 | |
| string: '' | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:11 GMT |
| + | - Thu, 09 Mar 2017 14:24:51 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -345,37 +345,37 @@ http_interactions: |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - e2dcbcfa-2652-4481-afb6-9384adf755b0 |
| + | - 4dffd60c-ada1-4c50-ac49-bd8de15682f6 |
| X-Runtime: | |
| - | - '0.024048' |
| + | - '0.031363' |
| Content-Length: | |
| - '2' | |
| body: | |
| encoding: UTF-8 | |
| string: "[]" | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:11 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:51 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/bands.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:11 GMT |
| + | - Thu, 09 Mar 2017 14:24:51 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -386,45 +386,45 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"a033f809c4e59913be4f60efe0643b26" |
| + | - W/"778ab2cffa04cafa028ff3f2859c1d1e" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 5a921d6d-3fbb-497a-8d2e-9de4d7ac990b |
| + | - 4c3bc112-eaf4-4e32-a35c-a658da5d875b |
| X-Runtime: | |
| - | - '0.071665' |
| + | - '0.088836' |
| Content-Length: | |
| - '1601' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8387f6437d12223b94","created_at":"2016-06-17T08:02:11Z","updated_at":"2016-06-17T08:02:11Z","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,"filter_fields":null,"fields":[{"_id":"5763ae8387f6437d12223b95","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":"5763ae8387f6437d12223b96","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":"5763ae8387f6437d12223b97","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":"5763ae8387f6437d12223b99","name":{"en":"grunge"},"position":0},{"id":"5763ae8387f6437d12223b9a","name":{"en":"rock"},"position":0},{"id":"5763ae8387f6437d12223b9b","name":{"en":"country"},"position":0}]},{"_id":"5763ae8387f6437d12223b98","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":"58c165b487f64357b6203392","created_at":"2017-03-09T14:24:52Z","updated_at":"2017-03-09T14:24:52Z","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,"filter_fields":null,"fields":[{"_id":"58c165b487f64357b6203393","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":"58c165b487f64357b6203394","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":"58c165b487f64357b6203395","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":"58c165b487f64357b6203397","name":{"en":"grunge"},"position":0},{"id":"58c165b487f64357b6203398","name":{"en":"rock"},"position":0},{"id":"58c165b487f64357b6203399","name":{"en":"country"},"position":0}]},{"_id":"58c165b487f64357b6203396","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: Fri, 17 Jun 2016 08:02:11 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:52 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/events.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:11 GMT |
| + | - Thu, 09 Mar 2017 14:24:52 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -435,48 +435,48 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"da8936f34ffe7af3aa77a3f59e2f9589" |
| + | - W/"69687450eb52782072c80d7787207073" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 0c932913-369b-490c-9439-74a66717a9b2 |
| + | - 8c40e857-ec03-484c-910e-f66012730a43 |
| X-Runtime: | |
| - | - '0.086737' |
| + | - '0.150235' |
| Content-Length: | |
| - '2035' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8387f6437d12223b9c","created_at":"2016-06-17T08:02:11Z","updated_at":"2016-06-17T08:02:11Z","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,"filter_fields":null,"fields":[{"_id":"5763ae8387f6437d12223b9d","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":"5763ae8387f6437d12223b9e","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":"5763ae8387f6437d12223b9f","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":"5763ae8387f6437d12223ba0","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":"5763ae8387f6437d12223ba1","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":"5763ae8387f6437d12223ba2","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":"5763ae8387f6437d12223ba3","created_at":null,"updated_at":null,"name":"price","type":"float","label":"Price |
| + | string: '{"_id":"58c165b487f64357b620339a","created_at":"2017-03-09T14:24:52Z","updated_at":"2017-03-09T14:24:52Z","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,"filter_fields":null,"fields":[{"_id":"58c165b487f64357b620339b","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":"58c165b487f64357b620339c","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":"58c165b487f64357b620339d","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":"58c165b487f64357b620339e","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":"58c165b487f64357b620339f","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":"58c165b487f64357b62033a0","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":"58c165b487f64357b62033a1","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: Fri, 17 Jun 2016 08:02:11 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:52 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/messages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:11 GMT |
| + | - Thu, 09 Mar 2017 14:24:52 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -487,44 +487,44 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"7f476e118b0311b1cb6f7de5d8f5dc7b" |
| + | - W/"799f6e52cf7fd5950cd8778e3521e260" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 2bf6c642-3ce1-489e-8a73-62dc59102c4d |
| + | - e57e09e2-f9a9-431a-b545-22964d0692be |
| X-Runtime: | |
| - | - '0.070388' |
| + | - '0.087424' |
| Content-Length: | |
| - '1182' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8387f6437d12223ba4","created_at":"2016-06-17T08:02:11Z","updated_at":"2016-06-17T08:02:11Z","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,"filter_fields":null,"fields":[{"_id":"5763ae8387f6437d12223ba5","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":"5763ae8387f6437d12223ba6","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":"5763ae8387f6437d12223ba7","created_at":null,"updated_at":null,"name":"message","type":"text","label":"Message","hint":"Customer |
| + | string: '{"_id":"58c165b487f64357b62033a2","created_at":"2017-03-09T14:24:52Z","updated_at":"2017-03-09T14:24:52Z","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,"filter_fields":null,"fields":[{"_id":"58c165b487f64357b62033a3","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":"58c165b487f64357b62033a4","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":"58c165b487f64357b62033a5","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: Fri, 17 Jun 2016 08:02:11 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:52 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/songs.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:11 GMT |
| + | - Thu, 09 Mar 2017 14:24:52 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -535,45 +535,45 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"e5b0674aa9e4c42db6c5d933b0d92221" |
| + | - W/"2b65137a96b5b21857a4100df3bbbfa9" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 36af4267-f607-4e48-a846-bcc22068e4d8 |
| + | - 48dfc9fb-127b-453f-a0f8-fcb437cce8bf |
| X-Runtime: | |
| - | - '0.077096' |
| + | - '0.090013' |
| Content-Length: | |
| - '1633' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8387f6437d12223ba8","created_at":"2016-06-17T08:02:11Z","updated_at":"2016-06-17T08:02:11Z","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,"filter_fields":null,"fields":[{"_id":"5763ae8387f6437d12223ba9","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":"5763ae8387f6437d12223baa","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":"5763ae8387f6437d12223bab","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":"5763ae8387f6437d12223bac","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":"5763ae8387f6437d12223bad","created_at":null,"updated_at":null,"name":"duration","type":"string","label":"Duration","hint":"format |
| + | string: '{"_id":"58c165b487f64357b62033a6","created_at":"2017-03-09T14:24:52Z","updated_at":"2017-03-09T14:24:52Z","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,"filter_fields":null,"fields":[{"_id":"58c165b487f64357b62033a7","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":"58c165b487f64357b62033a8","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":"58c165b487f64357b62033a9","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":"58c165b487f64357b62033aa","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":"58c165b487f64357b62033ab","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: Fri, 17 Jun 2016 08:02:11 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:52 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/updates.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:11 GMT |
| + | - Thu, 09 Mar 2017 14:24:52 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -584,52 +584,52 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"1c0c672a6b469836d29a32768e25c583" |
| + | - W/"e8f05d035d436e82c04f2c9cfbd15ea8" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - a53d9e21-d481-4220-ad6e-83ff17ed50ac |
| + | - 919cb66c-5e30-4103-b07e-7b331dc356fb |
| X-Runtime: | |
| - | - '0.081520' |
| + | - '0.116201' |
| Content-Length: | |
| - '1759' | |
| body: | |
| encoding: ASCII-8BIT | |
| string: !binary |- | |
| - | eyJfaWQiOiI1NzYzYWU4Mzg3ZjY0MzdkMTIyMjNiYWUiLCJjcmVhdGVkX2F0 |
| - | IjoiMjAxNi0wNi0xN1QwODowMjoxMVoiLCJ1cGRhdGVkX2F0IjoiMjAxNi0w |
| - | Ni0xN1QwODowMjoxMVoiLCJuYW1lIjoiVXBkYXRlcyIsInNsdWciOiJ1cGRh |
| + | eyJfaWQiOiI1OGMxNjViNDg3ZjY0MzU3YjYyMDMzYWMiLCJjcmVhdGVkX2F0 |
| + | IjoiMjAxNy0wMy0wOVQxNDoyNDo1MloiLCJ1cGRhdGVkX2F0IjoiMjAxNy0w |
| + | My0wOVQxNDoyNDo1MloiLCJuYW1lIjoiVXBkYXRlcyIsInNsdWciOiJ1cGRh |
| dGVzIiwiZGVzY3JpcHRpb24iOiJMaXN0IG9mIHVwZGF0ZXMiLCJsYWJlbF9m | |
| aWVsZF9uYW1lIjoidGl0bGUiLCJvcmRlcl9kaXJlY3Rpb24iOiJhc2MiLCJw | |
| dWJsaWNfc3VibWlzc2lvbl9lbmFibGVkIjpmYWxzZSwicHVibGljX3N1Ym1p | |
| c3Npb25fYWNjb3VudHMiOltdLCJwdWJsaWNfc3VibWlzc2lvbl90aXRsZV90 | |
| ZW1wbGF0ZSI6bnVsbCwiZW50cnlfdGVtcGxhdGUiOm51bGwsImRpc3BsYXlf | |
| c2V0dGluZ3MiOm51bGwsImZpbHRlcl9maWVsZHMiOm51bGwsImZpZWxkcyI6 | |
| - | W3siX2lkIjoiNTc2M2FlODM4N2Y2NDM3ZDEyMjIzYmFmIiwiY3JlYXRlZF9h |
| + | W3siX2lkIjoiNThjMTY1YjQ4N2Y2NDM1N2I2MjAzM2FkIiwiY3JlYXRlZF9h |
| dCI6bnVsbCwidXBkYXRlZF9hdCI6bnVsbCwibmFtZSI6InRpdGxlIiwidHlw | |
| ZSI6InN0cmluZyIsImxhYmVsIjoiVGl0bGUiLCJoaW50IjoiTm90IGRpc3Bs | |
| YXllZCBpbiB0aGUgd2Vic2l0ZSIsInJlcXVpcmVkIjp0cnVlLCJsb2NhbGl6 | |
| ZWQiOnRydWUsInVuaXF1ZSI6ZmFsc2UsImRlZmF1bHQiOm51bGwsInBvc2l0 | |
| - | aW9uIjowfSx7Il9pZCI6IjU3NjNhZTgzODdmNjQzN2QxMjIyM2JiMCIsImNy |
| + | aW9uIjowfSx7Il9pZCI6IjU4YzE2NWI0ODdmNjQzNTdiNjIwMzNhZSIsImNy |
| ZWF0ZWRfYXQiOm51bGwsInVwZGF0ZWRfYXQiOm51bGwsIm5hbWUiOiJ0ZXh0 | |
| IiwidHlwZSI6InRleHQiLCJsYWJlbCI6IlRleHQiLCJoaW50IjoiVGV4dCBk | |
| aXNwbGF5ZWQgaW4gdGhlIGhvbWUgcGFnZSIsInJlcXVpcmVkIjpmYWxzZSwi | |
| bG9jYWxpemVkIjp0cnVlLCJ1bmlxdWUiOmZhbHNlLCJkZWZhdWx0IjpudWxs | |
| LCJwb3NpdGlvbiI6MSwidGV4dF9mb3JtYXR0aW5nIjoiaHRtbCJ9LHsiX2lk | |
| - | IjoiNTc2M2FlODM4N2Y2NDM3ZDEyMjIzYmIxIiwiY3JlYXRlZF9hdCI6bnVs |
| + | IjoiNThjMTY1YjQ4N2Y2NDM1N2I2MjAzM2FmIiwiY3JlYXRlZF9hdCI6bnVs |
| bCwidXBkYXRlZF9hdCI6bnVsbCwibmFtZSI6ImNhdGVnb3J5IiwidHlwZSI6 | |
| InNlbGVjdCIsImxhYmVsIjoiQ2F0ZWdvcnkiLCJoaW50IjoiUGljayBhIGNh | |
| dGVnb3J5IiwicmVxdWlyZWQiOmZhbHNlLCJsb2NhbGl6ZWQiOnRydWUsInVu | |
| aXF1ZSI6ZmFsc2UsImRlZmF1bHQiOm51bGwsInBvc2l0aW9uIjoyLCJzZWxl | |
| - | Y3Rfb3B0aW9ucyI6W3siaWQiOiI1NzYzYWU4Mzg3ZjY0MzdkMTIyMjNiYjMi |
| + | Y3Rfb3B0aW9ucyI6W3siaWQiOiI1OGMxNjViNDg3ZjY0MzU3YjYyMDMzYjEi |
| LCJuYW1lIjp7ImVuIjoiR2VuZXJhbCIsImZyIjoiR8OpbsOpcmFsIn0sInBv | |
| - | c2l0aW9uIjowfSx7ImlkIjoiNTc2M2FlODM4N2Y2NDM3ZDEyMjIzYmI0Iiwi |
| + | c2l0aW9uIjowfSx7ImlkIjoiNThjMTY1YjQ4N2Y2NDM1N2I2MjAzM2IyIiwi |
| bmFtZSI6eyJlbiI6IkdpZ3MiLCJmciI6IkNvbmNlcnRzIn0sInBvc2l0aW9u | |
| - | IjowfSx7ImlkIjoiNTc2M2FlODM4N2Y2NDM3ZDEyMjIzYmI1IiwibmFtZSI6 |
| + | IjowfSx7ImlkIjoiNThjMTY1YjQ4N2Y2NDM1N2I2MjAzM2IzIiwibmFtZSI6 |
| eyJlbiI6IkJhbmRzIiwiZnIiOiJHcm91cGVzIn0sInBvc2l0aW9uIjowfSx7 | |
| - | ImlkIjoiNTc2M2FlODM4N2Y2NDM3ZDEyMjIzYmI2IiwibmFtZSI6eyJlbiI6 |
| - | IkFsYnVtcyJ9LCJwb3NpdGlvbiI6MH1dfSx7Il9pZCI6IjU3NjNhZTgzODdm |
| - | NjQzN2QxMjIyM2JiMiIsImNyZWF0ZWRfYXQiOm51bGwsInVwZGF0ZWRfYXQi |
| + | ImlkIjoiNThjMTY1YjQ4N2Y2NDM1N2I2MjAzM2I0IiwibmFtZSI6eyJlbiI6 |
| + | IkFsYnVtcyJ9LCJwb3NpdGlvbiI6MH1dfSx7Il9pZCI6IjU4YzE2NWI0ODdm |
| + | NjQzNTdiNjIwMzNiMCIsImNyZWF0ZWRfYXQiOm51bGwsInVwZGF0ZWRfYXQi |
| Om51bGwsIm5hbWUiOiJkYXRlIiwidHlwZSI6ImRhdGUiLCJsYWJlbCI6IkRh | |
| dGUiLCJoaW50IjoiRGF0ZSBvZiB0aGUgdXBkYXRlIiwicmVxdWlyZWQiOmZh | |
| bHNlLCJsb2NhbGl6ZWQiOmZhbHNlLCJ1bmlxdWUiOmZhbHNlLCJkZWZhdWx0 | |
| @@ | @@ -637,28 +637,28 @@ http_interactions: |
| cF9ieSI6bnVsbCwicHVibGljX3N1Ym1pc3Npb25fYWNjb3VudF9lbWFpbHMi | |
| OltdfQ== | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:11 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:52 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/bands.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:11 GMT |
| + | - Thu, 09 Mar 2017 14:24:52 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -669,45 +669,45 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"c6294074ac248fa2f3521cf40cf38091" |
| + | - W/"4e2e3838b0a55d143cc2396b40fdcf4b" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - b75393ea-bec0-4e5d-9303-873b925999a3 |
| + | - 75a1b934-d463-4514-896b-14648e1f864c |
| X-Runtime: | |
| - | - '0.108108' |
| + | - '0.133106' |
| Content-Length: | |
| - '1882' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8387f6437d12223b94","created_at":"2016-06-17T08:02:11Z","updated_at":"2016-06-17T08:02:11Z","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,"filter_fields":null,"fields":[{"_id":"5763ae8387f6437d12223b95","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":"5763ae8387f6437d12223b96","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":"5763ae8387f6437d12223b97","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":"5763ae8387f6437d12223b99","name":{"en":"grunge"},"position":0},{"id":"5763ae8387f6437d12223b9a","name":{"en":"rock"},"position":0},{"id":"5763ae8387f6437d12223b9b","name":{"en":"country"},"position":0}]},{"_id":"5763ae8387f6437d12223bb7","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":"5763ae8387f6437d12223b98","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":"58c165b487f64357b6203392","created_at":"2017-03-09T14:24:52Z","updated_at":"2017-03-09T14:24:52Z","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,"filter_fields":null,"fields":[{"_id":"58c165b487f64357b6203393","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":"58c165b487f64357b6203394","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":"58c165b487f64357b6203395","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":"58c165b487f64357b6203397","name":{"en":"grunge"},"position":0},{"id":"58c165b487f64357b6203398","name":{"en":"rock"},"position":0},{"id":"58c165b487f64357b6203399","name":{"en":"country"},"position":0}]},{"_id":"58c165b487f64357b62033b5","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":"58c165b487f64357b6203396","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: Fri, 17 Jun 2016 08:02:11 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:52 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/songs.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:11 GMT |
| + | - Thu, 09 Mar 2017 14:24:52 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -718,45 +718,45 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"5d5cf7b1522c4d3bbdd2fe14f4bed146" |
| + | - W/"6eadf55372825d2138b9ddde69dd419a" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 06e2b9b6-0a20-4901-8002-1ee4f4e6e18d |
| + | - 72aac176-af46-4c54-b61c-1f05466b73ed |
| X-Runtime: | |
| - | - '0.122047' |
| + | - '0.142682' |
| Content-Length: | |
| - '1912' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8387f6437d12223ba8","created_at":"2016-06-17T08:02:11Z","updated_at":"2016-06-17T08:02:11Z","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,"filter_fields":null,"fields":[{"_id":"5763ae8387f6437d12223ba9","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":"5763ae8387f6437d12223bb8","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":"5763ae8387f6437d12223baa","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":"5763ae8387f6437d12223bab","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":"5763ae8387f6437d12223bac","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":"5763ae8387f6437d12223bad","created_at":null,"updated_at":null,"name":"duration","type":"string","label":"Duration","hint":"format |
| + | string: '{"_id":"58c165b487f64357b62033a6","created_at":"2017-03-09T14:24:52Z","updated_at":"2017-03-09T14:24:52Z","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,"filter_fields":null,"fields":[{"_id":"58c165b487f64357b62033a7","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":"58c165b487f64357b62033b6","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":"58c165b487f64357b62033a8","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":"58c165b487f64357b62033a9","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":"58c165b487f64357b62033aa","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":"58c165b487f64357b62033ab","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: Fri, 17 Jun 2016 08:02:11 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:52 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=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:12 GMT |
| + | - Thu, 09 Mar 2017 14:24:53 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -769,43 +769,43 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"6af68edf00d01d408d31d8887174ee23" |
| + | - W/"6b1d4aa8ff8d255982a5bf2a49a89ae2" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 50b442bb-151a-46fa-b011-d5d64e41ad6c |
| + | - cdc6ee2d-032e-4804-bc98-5f1143126b19 |
| X-Runtime: | |
| - | - '0.152076' |
| + | - '0.144093' |
| Content-Length: | |
| - '354' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8487f6437d12223bba","created_at":"2016-06-17T08:02:12Z","updated_at":"2016-06-17T08:02:12Z","_slug":"alice-in-chains","content_type_slug":"bands","_label":"Alice |
| + | string: '{"_id":"58c165b587f64357b62033b8","created_at":"2017-03-09T14:24:53Z","updated_at":"2017-03-09T14:24:53Z","_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: Fri, 17 Jun 2016 08:02:12 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:53 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=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:12 GMT |
| + | - Thu, 09 Mar 2017 14:24:53 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -818,43 +818,43 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"7c0029383a895eb88fc6cc3fa5d8fa15" |
| + | - W/"753f114c602639388afb1f8a5e9826d4" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 6e815e02-b482-407b-816c-3d3414a4ae62 |
| + | - 24ba2d1a-ee28-4de9-b387-17944ad1db59 |
| X-Runtime: | |
| - | - '0.068237' |
| + | - '0.077421' |
| Content-Length: | |
| - '336' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8487f6437d12223bbd","created_at":"2016-06-17T08:02:12Z","updated_at":"2016-06-17T08:02:12Z","_slug":"pearl-jam","content_type_slug":"bands","_label":"Pearl |
| + | string: '{"_id":"58c165b587f64357b62033bb","created_at":"2017-03-09T14:24:53Z","updated_at":"2017-03-09T14:24:53Z","_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: Fri, 17 Jun 2016 08:02:12 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:53 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=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:12 GMT |
| + | - Thu, 09 Mar 2017 14:24:53 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -867,43 +867,43 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"b5bcc2d00d8b27a466377a36990948b7" |
| + | - W/"d5fa739fa9db1fbcd505e2e2095a9707" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - fdaff8cf-2982-4ee7-8e56-a7a1cba2d80a |
| + | - 79d5835d-204d-42b5-9346-69006c95b369 |
| X-Runtime: | |
| - | - '0.068400' |
| + | - '0.073033' |
| Content-Length: | |
| - '327' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8487f6437d12223bc0","created_at":"2016-06-17T08:02:12Z","updated_at":"2016-06-17T08:02:12Z","_slug":"the-who","content_type_slug":"bands","_label":"The |
| + | string: '{"_id":"58c165b587f64357b62033be","created_at":"2017-03-09T14:24:53Z","updated_at":"2017-03-09T14:24:53Z","_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: Fri, 17 Jun 2016 08:02:12 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:53 GMT |
| - request: | |
| method: get | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_assets.json?auth_token=HyqKxyBLmEH9x_GzYnWY |
| + | uri: http://localhost:3000/locomotive/api/v3/content_assets.json?auth_token=2A9iTQyoACHbA4eAVLCH |
| body: | |
| encoding: UTF-8 | |
| string: '' | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:12 GMT |
| + | - Thu, 09 Mar 2017 14:24:53 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -916,16 +916,16 @@ http_interactions: |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - ebad87de-ed33-42f2-a0e8-649cfa351726 |
| + | - e080a7b8-5b61-4f69-9ded-ba389dc17882 |
| X-Runtime: | |
| - | - '0.029751' |
| + | - '0.053412' |
| Content-Length: | |
| - '2' | |
| body: | |
| encoding: UTF-8 | |
| string: "[]" | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:12 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:53 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/content_assets.json | |
| @@ | @@ -4571,23 +4571,23 @@ http_interactions: |
| OfidNktYCfvn4Km/bXYO/jvMLNj8pMaBuKpZbO3y4yZrtnX/ZscEhoeY1tKX | |
| ETGx9f8LMACQI47rDqNe1wAAAABJRU5ErkJggg0KLS0tLS0tLS0tLS0tLVJ1 | |
| YnlNdWx0aXBhcnRQb3N0DQpDb250ZW50LURpc3Bvc2l0aW9uOiBmb3JtLWRh | |
| - | dGE7IG5hbWU9ImF1dGhfdG9rZW4iDQoNCkh5cUt4eUJMbUVIOXhfR3pZbldZ |
| + | dGE7IG5hbWU9ImF1dGhfdG9rZW4iDQoNCjJBOWlUUXlvQUNIYkE0ZUFWTENI |
| DQotLS0tLS0tLS0tLS0tUnVieU11bHRpcGFydFBvc3QtLQ0KDQo= | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:12 GMT |
| + | - Thu, 09 Mar 2017 14:24:53 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| @@ | @@ -4600,41 +4600,41 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"67f98ee7cf3240ecc5850c7316c03b12" |
| + | - W/"be663ebeaa22eb8b40cbb9f3b073c8a1" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 7e22fe83-639f-41c0-a0a2-32432168d4b3 |
| + | - 9ac20312-a7e0-41cf-919a-d91010457405 |
| X-Runtime: | |
| - | - '0.157890' |
| + | - '0.122702' |
| Content-Length: | |
| - '1109' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8487f6437d12223bc2","created_at":"2016-06-17T08:02:12Z","updated_at":"2016-06-17T08:02:12Z","content_type":"image","width":602,"height":397,"vignette_url":"/images/dynamic/W1siZmYiLCIvVXNlcnMvZGlkaWVyL0RvY3VtZW50cy9Mb2NvbW90aXZlQ01TL2VuZ2luZS9zcGVjL2R1bW15L3B1YmxpYy9zaXRlcy81NzYzYWU4Mjg3ZjY0MzdkMTIyMjNiOGYvYXNzZXRzLzU3NjNhZTg0ODdmNjQzN2QxMjIyM2JjMi9waG90by5qcGciXSxbInAiLCJ0aHVtYiIsIjg1eDg1IyJdXQ/photo.jpg?sha=afd4eef73e6d69c0","alternative_vignette_url":"/images/dynamic/W1siZmYiLCIvVXNlcnMvZGlkaWVyL0RvY3VtZW50cy9Mb2NvbW90aXZlQ01TL2VuZ2luZS9zcGVjL2R1bW15L3B1YmxpYy9zaXRlcy81NzYzYWU4Mjg3ZjY0MzdkMTIyMjNiOGYvYXNzZXRzLzU3NjNhZTg0ODdmNjQzN2QxMjIyM2JjMi9waG90by5qcGciXSxbInAiLCJ0aHVtYiIsIjE5MHgxMjBcdTAwM2UiLHsiZm9ybWF0IjoicG5nIiwiZnJhbWUiOjB9XSxbInAiLCJlbmNvZGUiLCJwbmciXV0/photo.png?sha=160b431bab5b92b0","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/5763ae8287f6437d12223b8f/assets/5763ae8487f6437d12223bc2/photo.jpg"}' |
| + | string: '{"_id":"58c165b587f64357b62033c0","created_at":"2017-03-09T14:24:53Z","updated_at":"2017-03-09T14:24:53Z","content_type":"image","width":602,"height":397,"vignette_url":"/images/dynamic/W1siZmYiLCIvVXNlcnMvZGlkaWVyL0RvY3VtZW50cy9Mb2NvbW90aXZlQ01TL2VuZ2luZS9zcGVjL2R1bW15L3B1YmxpYy9zaXRlcy81OGMxNjViMzg3ZjY0MzU3YjYyMDMzOGQvYXNzZXRzLzU4YzE2NWI1ODdmNjQzNTdiNjIwMzNjMC9waG90by5qcGciXSxbInAiLCJ0aHVtYiIsIjg1eDg1IyJdXQ/photo.jpg?sha=7f1e7b05a9306491","alternative_vignette_url":"/images/dynamic/W1siZmYiLCIvVXNlcnMvZGlkaWVyL0RvY3VtZW50cy9Mb2NvbW90aXZlQ01TL2VuZ2luZS9zcGVjL2R1bW15L3B1YmxpYy9zaXRlcy81OGMxNjViMzg3ZjY0MzU3YjYyMDMzOGQvYXNzZXRzLzU4YzE2NWI1ODdmNjQzNTdiNjIwMzNjMC9waG90by5qcGciXSxbInAiLCJ0aHVtYiIsIjE5MHgxMjBcdTAwM2UiLHsiZm9ybWF0IjoicG5nIiwiZnJhbWUiOjB9XSxbInAiLCJlbmNvZGUiLCJwbmciXV0/photo.png?sha=443c984005e92fb4","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/58c165b387f64357b620338d/assets/58c165b587f64357b62033c0/photo.jpg"}' |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:12 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:53 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=HyqKxyBLmEH9x_GzYnWY&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%2F5763ae8287f6437d12223b8f%2Fassets%2F5763ae8487f6437d12223bc2%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=2A9iTQyoACHbA4eAVLCH&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%2F58c165b387f64357b620338d%2Fassets%2F58c165b587f64357b62033c0%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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:12 GMT |
| + | - Thu, 09 Mar 2017 14:24:53 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -4647,45 +4647,45 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"15ca204d5a4401e27276044400d97abb" |
| + | - W/"adfcfc23a31eb9f112a34ad756129c52" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 924389ff-7980-4d4a-999e-10342bfb3a55 |
| + | - 62f7625d-5904-4e4a-b713-3f4df2b5acab |
| X-Runtime: | |
| - | - '0.081542' |
| + | - '0.086062' |
| Content-Length: | |
| - '568' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8487f6437d12223bc4","created_at":"2016-06-17T08:02:12Z","updated_at":"2016-06-17T08:02:12Z","_slug":"avogadros-number","content_type_slug":"events","_label":"Avogadro''s |
| + | string: '{"_id":"58c165b587f64357b62033c2","created_at":"2017-03-09T14:24:53Z","updated_at":"2017-03-09T14:24:53Z","_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/5763ae8287f6437d12223b8f/assets/5763ae8487f6437d12223bc2/photo.jpg\" |
| + | ipsum\u003cbr/\u003e\u003cimg src=\"/sites/58c165b387f64357b620338d/assets/58c165b587f64357b62033c0/photo.jpg\" |
| alt=\"\" /\u003e\u003c/p\u003e","tags":null,"price":0.0}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:12 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:53 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=HyqKxyBLmEH9x_GzYnWY&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%2F5763ae8287f6437d12223b8f%2Fassets%2F5763ae8487f6437d12223bc2%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=2A9iTQyoACHbA4eAVLCH&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%2F58c165b387f64357b620338d%2Fassets%2F58c165b587f64357b62033c0%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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:12 GMT |
| + | - Thu, 09 Mar 2017 14:24:53 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -4698,45 +4698,45 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"179d2ee4cbb2da8c3d8a004aca33b784" |
| + | - W/"694ace7a69564221419bc7e2210d9d72" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - e0e9be02-ff1a-4de3-899a-87f614869f27 |
| + | - ea79304b-7c56-4284-8e82-506bd0ec087f |
| X-Runtime: | |
| - | - '0.076874' |
| + | - '0.085920' |
| Content-Length: | |
| - '568' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8487f6437d12223bc7","created_at":"2016-06-17T08:02:12Z","updated_at":"2016-06-17T08:02:12Z","_slug":"quixotes-true-blue","content_type_slug":"events","_label":"Quixote''s |
| + | string: '{"_id":"58c165b587f64357b62033c5","created_at":"2017-03-09T14:24:53Z","updated_at":"2017-03-09T14:24:53Z","_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/5763ae8287f6437d12223b8f/assets/5763ae8487f6437d12223bc2/photo.jpg\" |
| + | ipsum\u003cbr/\u003e\u003cimg src=\"/sites/58c165b387f64357b620338d/assets/58c165b587f64357b62033c0/photo.jpg\" |
| alt=\"\" /\u003e\u003c/p\u003e","tags":null,"price":0.0}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:12 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:53 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=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:13 GMT |
| + | - Thu, 09 Mar 2017 14:24:54 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -4749,44 +4749,44 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"623e93a4b3569754cac7fbdd211642d3" |
| + | - W/"cc765160ab1dafd3968a02b2fa135081" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - f2535bfe-f6b6-4b60-b162-7ba9c1b5c2c9 |
| + | - edc06136-ea8e-4c3c-9771-5a438eb86cc1 |
| X-Runtime: | |
| - | - '0.079989' |
| + | - '0.086994' |
| Content-Length: | |
| - '435' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8587f6437d12223bca","created_at":"2016-06-17T08:02:13Z","updated_at":"2016-06-17T08:02:13Z","_slug":"kellys-westport-inn","content_type_slug":"events","_label":"Kelly''s |
| + | string: '{"_id":"58c165b687f64357b62033c8","created_at":"2017-03-09T14:24:54Z","updated_at":"2017-03-09T14:24:54Z","_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: Fri, 17 Jun 2016 08:02:13 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:54 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=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:13 GMT |
| + | - Thu, 09 Mar 2017 14:24:54 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -4799,44 +4799,44 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"a938315c03d9bccf2bb626155b6922c4" |
| + | - W/"d220b2f2a6deb6443b44054a07e31683" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 69ec7387-b375-41d3-93c3-acca3960373a |
| + | - 4bbace5d-17ba-4aaa-8f49-68ece1c1376a |
| X-Runtime: | |
| - | - '0.078674' |
| + | - '0.088245' |
| Content-Length: | |
| - '421' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8587f6437d12223bcd","created_at":"2016-06-17T08:02:13Z","updated_at":"2016-06-17T08:02:13Z","_slug":"brownes-market","content_type_slug":"events","_label":"Browne''s |
| + | string: '{"_id":"58c165b687f64357b62033cb","created_at":"2017-03-09T14:24:54Z","updated_at":"2017-03-09T14:24:54Z","_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: Fri, 17 Jun 2016 08:02:13 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:54 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/events/entries/ballydoyles.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:13 GMT |
| + | - Thu, 09 Mar 2017 14:24:54 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -4849,41 +4849,41 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"fb0fb1eb5cbf34f83573d6edf4631c66" |
| + | - W/"4558d40538ec85ba5166c8f5a0f1f6ab" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 0bbf4319-b4a7-4a7f-8a34-b8a89d2de6a0 |
| + | - 33b9160d-c29f-422b-b7f4-ca04f67b2776 |
| X-Runtime: | |
| - | - '0.078636' |
| + | - '0.082593' |
| Content-Length: | |
| - '388' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8587f6437d12223bd0","created_at":"2016-06-17T08:02:13Z","updated_at":"2016-06-17T08:02:13Z","_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":"58c165b687f64357b62033ce","created_at":"2017-03-09T14:24:54Z","updated_at":"2017-03-09T14:24:54Z","_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: Fri, 17 Jun 2016 08:02:13 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:54 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=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:13 GMT |
| + | - Thu, 09 Mar 2017 14:24:54 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -4896,43 +4896,43 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"18aa2e39c0c54ab1c34880f6ae45ad24" |
| + | - W/"47e6bba23aafacaf7b01901d279fe5e5" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 919c4a4b-28e1-4d9a-b50a-00a289411e9d |
| + | - 800032c9-bd01-43f3-a1cd-645e44ca4470 |
| X-Runtime: | |
| - | - '0.070671' |
| + | - '0.082952' |
| Content-Length: | |
| - '388' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8587f6437d12223bd3","created_at":"2016-06-17T08:02:13Z","updated_at":"2016-06-17T08:02:13Z","_slug":"the-belmont","content_type_slug":"events","_label":"The |
| + | string: '{"_id":"58c165b687f64357b62033d1","created_at":"2017-03-09T14:24:54Z","updated_at":"2017-03-09T14:24:54Z","_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: Fri, 17 Jun 2016 08:02:13 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:54 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=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:13 GMT |
| + | - Thu, 09 Mar 2017 14:24:54 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -4945,43 +4945,43 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"b2d8d9e2d54085541e22ece859450807" |
| + | - W/"25525240cb85afa4fc75c86523871a32" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - ec981811-8862-4733-8dd8-f185f54b1b90 |
| + | - 17d77ed9-5461-4a05-ba9b-c20f6c457f85 |
| X-Runtime: | |
| - | - '0.094497' |
| + | - '0.082372' |
| Content-Length: | |
| - '411' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8587f6437d12223bd6","created_at":"2016-06-17T08:02:13Z","updated_at":"2016-06-17T08:02:13Z","_slug":"avogadros-number-1","content_type_slug":"events","_label":"Avogadro''s |
| + | string: '{"_id":"58c165b687f64357b62033d4","created_at":"2017-03-09T14:24:54Z","updated_at":"2017-03-09T14:24:54Z","_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: Fri, 17 Jun 2016 08:02:13 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:54 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=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:13 GMT |
| + | - Thu, 09 Mar 2017 14:24:54 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -4994,43 +4994,43 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"83d196e184628f98ee26601ece612641" |
| + | - W/"7481f130ce5ad4f2e135aaa64a5fac66" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - fc986986-2942-489c-91c2-a9e70f433b53 |
| + | - bc388a95-30e2-4167-a018-465004b2426d |
| X-Runtime: | |
| - | - '0.074008' |
| + | - '0.091285' |
| Content-Length: | |
| - '411' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8587f6437d12223bd9","created_at":"2016-06-17T08:02:13Z","updated_at":"2016-06-17T08:02:13Z","_slug":"quixotes-true-blue-1","content_type_slug":"events","_label":"Quixote''s |
| + | string: '{"_id":"58c165b687f64357b62033d7","created_at":"2017-03-09T14:24:54Z","updated_at":"2017-03-09T14:24:54Z","_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: Fri, 17 Jun 2016 08:02:13 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:54 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=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:13 GMT |
| + | - Thu, 09 Mar 2017 14:24:54 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -5043,43 +5043,43 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"b5da1f32b60e6cc7d977673bf7abfdae" |
| + | - W/"691048156c6c76ef6a48f9cefb53bae2" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - f852b14a-8447-4fcf-ade4-322a0f7fda5f |
| + | - add65f82-73e4-4147-9eca-6ae3a0d2629e |
| X-Runtime: | |
| - | - '0.071317' |
| + | - '0.079031' |
| Content-Length: | |
| - '419' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8587f6437d12223bdc","created_at":"2016-06-17T08:02:13Z","updated_at":"2016-06-17T08:02:13Z","_slug":"kellys-westport-inn-1","content_type_slug":"events","_label":"Kelly''s |
| + | string: '{"_id":"58c165b687f64357b62033da","created_at":"2017-03-09T14:24:54Z","updated_at":"2017-03-09T14:24:54Z","_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: Fri, 17 Jun 2016 08:02:13 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:54 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=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:13 GMT |
| + | - Thu, 09 Mar 2017 14:24:54 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -5092,43 +5092,43 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"b5743be1e14c0e63ad58782e4dcf5987" |
| + | - W/"b72ab2f3e45782f091d1e22aec318cd4" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 54fc9b64-d769-4ea3-bfc5-f30a178c468f |
| + | - 3410536b-0306-40ee-9d71-5410d25d4438 |
| X-Runtime: | |
| - | - '0.071533' |
| + | - '0.082940' |
| Content-Length: | |
| - '404' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8587f6437d12223bdf","created_at":"2016-06-17T08:02:13Z","updated_at":"2016-06-17T08:02:13Z","_slug":"brownes-market-1","content_type_slug":"events","_label":"Browne''s |
| + | string: '{"_id":"58c165b687f64357b62033dd","created_at":"2017-03-09T14:24:54Z","updated_at":"2017-03-09T14:24:54Z","_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: Fri, 17 Jun 2016 08:02:13 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:54 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=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:13 GMT |
| + | - Thu, 09 Mar 2017 14:24:54 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -5141,41 +5141,41 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"d672f515d9a38dd683f8255a56d12bd9" |
| + | - W/"9fdd9c6496aa373fcc22470423fd98d9" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 162c32aa-6e08-40d0-8742-f2f3fba2b21c |
| + | - 0aa3f8a4-0d5c-459e-ba68-4f67b04c25d4 |
| X-Runtime: | |
| - | - '0.075221' |
| + | - '0.083194' |
| Content-Length: | |
| - '391' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8587f6437d12223be2","created_at":"2016-06-17T08:02:13Z","updated_at":"2016-06-17T08:02:13Z","_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":"58c165b687f64357b62033e0","created_at":"2017-03-09T14:24:54Z","updated_at":"2017-03-09T14:24:54Z","_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: Fri, 17 Jun 2016 08:02:13 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:54 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=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:13 GMT |
| + | - Thu, 09 Mar 2017 14:24:55 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -5188,22 +5188,22 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"bd98f7ce7c89ca125c36350b41eeab06" |
| + | - W/"bcd9f383c814a873cb4304a7b50512aa" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 60d31d39-5bd7-4151-b104-f134f6bd8c0a |
| + | - a60ab200-5c96-447d-a0f8-271dd1e1856b |
| X-Runtime: | |
| - | - '0.072583' |
| + | - '0.102223' |
| Content-Length: | |
| - '391' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8587f6437d12223be5","created_at":"2016-06-17T08:02:14Z","updated_at":"2016-06-17T08:02:14Z","_slug":"the-belmont-1","content_type_slug":"events","_label":"The |
| + | string: '{"_id":"58c165b787f64357b62033e3","created_at":"2017-03-09T14:24:55Z","updated_at":"2017-03-09T14:24:55Z","_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: Fri, 17 Jun 2016 08:02:14 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:55 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/song-number-1.json | |
| @@ | @@ -5563,23 +5563,23 @@ http_interactions: |
| bnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0iY29udGVudF9l | |
| bnRyeVtkdXJhdGlvbl0iDQoNCjY6MjgNCi0tLS0tLS0tLS0tLS1SdWJ5TXVs | |
| dGlwYXJ0UG9zdA0KQ29udGVudC1EaXNwb3NpdGlvbjogZm9ybS1kYXRhOyBu | |
| - | YW1lPSJhdXRoX3Rva2VuIg0KDQpIeXFLeHlCTG1FSDl4X0d6WW5XWQ0KLS0t |
| + | YW1lPSJhdXRoX3Rva2VuIg0KDQoyQTlpVFF5b0FDSGJBNGVBVkxDSA0KLS0t |
| LS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0LS0NCg0K | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:14 GMT |
| + | - Thu, 09 Mar 2017 14:24:55 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -5594,26 +5594,26 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"b859d01efc44b713cf9ee15c4f954464" |
| + | - W/"ead5b39f1a0602e1ffc83d9bdd65c67e" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 976d6e03-e39f-47be-a274-19eef80dd17f |
| + | - 7958ac68-819f-43c1-85e2-84c5088d3aaf |
| X-Runtime: | |
| - | - '0.092472' |
| + | - '0.091434' |
| Content-Length: | |
| - '783' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8687f6437d12223be8","created_at":"2016-06-17T08:02:14Z","updated_at":"2016-06-17T08:02:14Z","_slug":"song-number-1","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"58c165b787f64357b62033e6","created_at":"2017-03-09T14:24:55Z","updated_at":"2017-03-09T14:24:55Z","_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/5763ae8287f6437d12223b8f/content_entry5763ae8387f6437d12223ba8/5763ae8687f6437d12223be8/files/cover.jpg","short_description":"Lorem |
| + | #1","cover":"/sites/58c165b387f64357b620338d/content_entry58c165b487f64357b62033a6/58c165b787f64357b62033e6/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: Fri, 17 Jun 2016 08:02:14 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:55 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/song-number-2.json | |
| @@ | @@ -5973,23 +5973,23 @@ http_interactions: |
| bnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0iY29udGVudF9l | |
| bnRyeVtkdXJhdGlvbl0iDQoNCjY6MjgNCi0tLS0tLS0tLS0tLS1SdWJ5TXVs | |
| dGlwYXJ0UG9zdA0KQ29udGVudC1EaXNwb3NpdGlvbjogZm9ybS1kYXRhOyBu | |
| - | YW1lPSJhdXRoX3Rva2VuIg0KDQpIeXFLeHlCTG1FSDl4X0d6WW5XWQ0KLS0t |
| + | YW1lPSJhdXRoX3Rva2VuIg0KDQoyQTlpVFF5b0FDSGJBNGVBVkxDSA0KLS0t |
| LS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0LS0NCg0K | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:14 GMT |
| + | - Thu, 09 Mar 2017 14:24:55 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -6004,26 +6004,26 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"ce15fbc958ba5424156f869e461cf6ba" |
| + | - W/"e8a0518723afe3ecf6455f734a33f0c9" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 4fda4fa6-03b2-4789-bc5c-5e872391c257 |
| + | - e585fcb1-f257-49be-9516-3e0b2aacccfa |
| X-Runtime: | |
| - | - '0.097152' |
| + | - '0.095255' |
| Content-Length: | |
| - '783' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8687f6437d12223beb","created_at":"2016-06-17T08:02:14Z","updated_at":"2016-06-17T08:02:14Z","_slug":"song-number-2","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"58c165b787f64357b62033e9","created_at":"2017-03-09T14:24:55Z","updated_at":"2017-03-09T14:24:55Z","_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/5763ae8287f6437d12223b8f/content_entry5763ae8387f6437d12223ba8/5763ae8687f6437d12223beb/files/cover.jpg","short_description":"Lorem |
| + | #2","cover":"/sites/58c165b387f64357b620338d/content_entry58c165b487f64357b62033a6/58c165b787f64357b62033e9/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: Fri, 17 Jun 2016 08:02:14 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:55 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/song-number-3.json | |
| @@ | @@ -6383,23 +6383,23 @@ http_interactions: |
| bnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0iY29udGVudF9l | |
| bnRyeVtkdXJhdGlvbl0iDQoNCjY6MjgNCi0tLS0tLS0tLS0tLS1SdWJ5TXVs | |
| dGlwYXJ0UG9zdA0KQ29udGVudC1EaXNwb3NpdGlvbjogZm9ybS1kYXRhOyBu | |
| - | YW1lPSJhdXRoX3Rva2VuIg0KDQpIeXFLeHlCTG1FSDl4X0d6WW5XWQ0KLS0t |
| + | YW1lPSJhdXRoX3Rva2VuIg0KDQoyQTlpVFF5b0FDSGJBNGVBVkxDSA0KLS0t |
| LS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0LS0NCg0K | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:14 GMT |
| + | - Thu, 09 Mar 2017 14:24:55 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -6414,26 +6414,26 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"2918c7eab1b1a5672fc87512cf48f807" |
| + | - W/"2e12a1bc67d716e314d513f52214d421" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 79c6b438-9c9b-4f6c-bbfd-e6fd28a0a1f3 |
| + | - 64ba0e26-98a5-4939-b785-84d6080e8a67 |
| X-Runtime: | |
| - | - '0.104307' |
| + | - '0.089635' |
| Content-Length: | |
| - '783' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8687f6437d12223bee","created_at":"2016-06-17T08:02:14Z","updated_at":"2016-06-17T08:02:14Z","_slug":"song-number-3","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"58c165b787f64357b62033ec","created_at":"2017-03-09T14:24:55Z","updated_at":"2017-03-09T14:24:55Z","_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/5763ae8287f6437d12223b8f/content_entry5763ae8387f6437d12223ba8/5763ae8687f6437d12223bee/files/cover.jpg","short_description":"Lorem |
| + | #3","cover":"/sites/58c165b387f64357b620338d/content_entry58c165b487f64357b62033a6/58c165b787f64357b62033ec/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: Fri, 17 Jun 2016 08:02:14 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:55 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/song-number-4.json | |
| @@ | @@ -6793,23 +6793,23 @@ http_interactions: |
| bnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0iY29udGVudF9l | |
| bnRyeVtkdXJhdGlvbl0iDQoNCjY6MjgNCi0tLS0tLS0tLS0tLS1SdWJ5TXVs | |
| dGlwYXJ0UG9zdA0KQ29udGVudC1EaXNwb3NpdGlvbjogZm9ybS1kYXRhOyBu | |
| - | YW1lPSJhdXRoX3Rva2VuIg0KDQpIeXFLeHlCTG1FSDl4X0d6WW5XWQ0KLS0t |
| + | YW1lPSJhdXRoX3Rva2VuIg0KDQoyQTlpVFF5b0FDSGJBNGVBVkxDSA0KLS0t |
| LS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0LS0NCg0K | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:14 GMT |
| + | - Thu, 09 Mar 2017 14:24:55 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -6824,26 +6824,26 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"20064e65a7525b3236f5c158bd34e689" |
| + | - W/"e30b9dc7fa58335eabcdf999f576e383" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 5da1679b-4bea-49b5-9ade-462155682f48 |
| + | - 4eb4c4b3-cfb1-4106-9914-3d91a31eec3a |
| X-Runtime: | |
| - | - '0.093123' |
| + | - '0.098253' |
| Content-Length: | |
| - '783' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8687f6437d12223bf1","created_at":"2016-06-17T08:02:14Z","updated_at":"2016-06-17T08:02:14Z","_slug":"song-number-4","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"58c165b787f64357b62033ef","created_at":"2017-03-09T14:24:55Z","updated_at":"2017-03-09T14:24:55Z","_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/5763ae8287f6437d12223b8f/content_entry5763ae8387f6437d12223ba8/5763ae8687f6437d12223bf1/files/cover.jpg","short_description":"Lorem |
| + | #4","cover":"/sites/58c165b387f64357b620338d/content_entry58c165b487f64357b62033a6/58c165b787f64357b62033ef/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: Fri, 17 Jun 2016 08:02:14 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:55 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/song-number-5.json | |
| @@ | @@ -7203,23 +7203,23 @@ http_interactions: |
| bnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0iY29udGVudF9l | |
| bnRyeVtkdXJhdGlvbl0iDQoNCjY6MjgNCi0tLS0tLS0tLS0tLS1SdWJ5TXVs | |
| dGlwYXJ0UG9zdA0KQ29udGVudC1EaXNwb3NpdGlvbjogZm9ybS1kYXRhOyBu | |
| - | YW1lPSJhdXRoX3Rva2VuIg0KDQpIeXFLeHlCTG1FSDl4X0d6WW5XWQ0KLS0t |
| + | YW1lPSJhdXRoX3Rva2VuIg0KDQoyQTlpVFF5b0FDSGJBNGVBVkxDSA0KLS0t |
| LS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0LS0NCg0K | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:14 GMT |
| + | - Thu, 09 Mar 2017 14:24:55 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -7234,26 +7234,26 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"d95419005a9f7f317bb6a2856ece848c" |
| + | - W/"000c7bfbca22e4d260cd9f74fe36c2ce" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 92bbad81-9b75-4ad3-a490-aaf7942b5c35 |
| + | - 84a2c2ef-7d7c-4058-b363-9bc155d27621 |
| X-Runtime: | |
| - | - '0.084956' |
| + | - '0.093639' |
| Content-Length: | |
| - '783' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8687f6437d12223bf4","created_at":"2016-06-17T08:02:14Z","updated_at":"2016-06-17T08:02:14Z","_slug":"song-number-5","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"58c165b787f64357b62033f2","created_at":"2017-03-09T14:24:55Z","updated_at":"2017-03-09T14:24:55Z","_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/5763ae8287f6437d12223b8f/content_entry5763ae8387f6437d12223ba8/5763ae8687f6437d12223bf4/files/cover.jpg","short_description":"Lorem |
| + | #5","cover":"/sites/58c165b387f64357b620338d/content_entry58c165b487f64357b62033a6/58c165b787f64357b62033f2/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: Fri, 17 Jun 2016 08:02:14 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:55 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/song-number-6.json | |
| @@ | @@ -7613,23 +7613,23 @@ http_interactions: |
| bnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0iY29udGVudF9l | |
| bnRyeVtkdXJhdGlvbl0iDQoNCjY6MjgNCi0tLS0tLS0tLS0tLS1SdWJ5TXVs | |
| dGlwYXJ0UG9zdA0KQ29udGVudC1EaXNwb3NpdGlvbjogZm9ybS1kYXRhOyBu | |
| - | YW1lPSJhdXRoX3Rva2VuIg0KDQpIeXFLeHlCTG1FSDl4X0d6WW5XWQ0KLS0t |
| + | YW1lPSJhdXRoX3Rva2VuIg0KDQoyQTlpVFF5b0FDSGJBNGVBVkxDSA0KLS0t |
| LS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0LS0NCg0K | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:14 GMT |
| + | - Thu, 09 Mar 2017 14:24:55 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -7644,26 +7644,26 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"df07d5be68c79af20282456cd72fb261" |
| + | - W/"2e68b644060d9608e118638bdb00c140" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - baf5abbe-f6bf-4980-95d2-78fcfdb7af25 |
| + | - eeedfa30-e01e-4821-9c7b-f9323d535443 |
| X-Runtime: | |
| - | - '0.088064' |
| + | - '0.088406' |
| Content-Length: | |
| - '783' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8687f6437d12223bf7","created_at":"2016-06-17T08:02:14Z","updated_at":"2016-06-17T08:02:14Z","_slug":"song-number-6","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"58c165b787f64357b62033f5","created_at":"2017-03-09T14:24:55Z","updated_at":"2017-03-09T14:24:55Z","_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/5763ae8287f6437d12223b8f/content_entry5763ae8387f6437d12223ba8/5763ae8687f6437d12223bf7/files/cover.jpg","short_description":"Lorem |
| + | #6","cover":"/sites/58c165b387f64357b620338d/content_entry58c165b487f64357b62033a6/58c165b787f64357b62033f5/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: Fri, 17 Jun 2016 08:02:14 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:55 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/song-number-7.json | |
| @@ | @@ -8023,23 +8023,23 @@ http_interactions: |
| bnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0iY29udGVudF9l | |
| bnRyeVtkdXJhdGlvbl0iDQoNCjY6MjgNCi0tLS0tLS0tLS0tLS1SdWJ5TXVs | |
| dGlwYXJ0UG9zdA0KQ29udGVudC1EaXNwb3NpdGlvbjogZm9ybS1kYXRhOyBu | |
| - | YW1lPSJhdXRoX3Rva2VuIg0KDQpIeXFLeHlCTG1FSDl4X0d6WW5XWQ0KLS0t |
| + | YW1lPSJhdXRoX3Rva2VuIg0KDQoyQTlpVFF5b0FDSGJBNGVBVkxDSA0KLS0t |
| LS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0LS0NCg0K | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:14 GMT |
| + | - Thu, 09 Mar 2017 14:24:55 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -8054,26 +8054,26 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"cf3d8e9c43e0cbf382f1773007ef65de" |
| + | - W/"22c3bf336ecf86e42d17c099d486fd0d" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - c297c0af-9c82-4867-ab38-651fe1592c10 |
| + | - b82fab33-5f67-4161-9cd3-187bd607c521 |
| X-Runtime: | |
| - | - '0.085812' |
| + | - '0.094662' |
| Content-Length: | |
| - '783' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8687f6437d12223bfa","created_at":"2016-06-17T08:02:14Z","updated_at":"2016-06-17T08:02:14Z","_slug":"song-number-7","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"58c165b787f64357b62033f8","created_at":"2017-03-09T14:24:55Z","updated_at":"2017-03-09T14:24:55Z","_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/5763ae8287f6437d12223b8f/content_entry5763ae8387f6437d12223ba8/5763ae8687f6437d12223bfa/files/cover.jpg","short_description":"Lorem |
| + | #7","cover":"/sites/58c165b387f64357b620338d/content_entry58c165b487f64357b62033a6/58c165b787f64357b62033f8/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: Fri, 17 Jun 2016 08:02:14 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:55 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/song-number-8.json | |
| @@ | @@ -8433,23 +8433,23 @@ http_interactions: |
| bnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0iY29udGVudF9l | |
| bnRyeVtkdXJhdGlvbl0iDQoNCjY6MjgNCi0tLS0tLS0tLS0tLS1SdWJ5TXVs | |
| dGlwYXJ0UG9zdA0KQ29udGVudC1EaXNwb3NpdGlvbjogZm9ybS1kYXRhOyBu | |
| - | YW1lPSJhdXRoX3Rva2VuIg0KDQpIeXFLeHlCTG1FSDl4X0d6WW5XWQ0KLS0t |
| + | YW1lPSJhdXRoX3Rva2VuIg0KDQoyQTlpVFF5b0FDSGJBNGVBVkxDSA0KLS0t |
| LS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0LS0NCg0K | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:14 GMT |
| + | - Thu, 09 Mar 2017 14:24:55 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -8464,47 +8464,47 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"67094dcdd39193379d494a2ecd638906" |
| + | - W/"c2d6da6fe4e1d9b9255a348b15ed5416" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 34516590-a41d-46b6-b4ef-9b4d80e32c75 |
| + | - de181103-da54-464d-81a4-da5a2fdd35b2 |
| X-Runtime: | |
| - | - '0.082667' |
| + | - '0.101856' |
| Content-Length: | |
| - '783' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8687f6437d12223bfd","created_at":"2016-06-17T08:02:14Z","updated_at":"2016-06-17T08:02:14Z","_slug":"song-number-8","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"58c165b887f64357b62033fb","created_at":"2017-03-09T14:24:56Z","updated_at":"2017-03-09T14:24:56Z","_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/5763ae8287f6437d12223b8f/content_entry5763ae8387f6437d12223ba8/5763ae8687f6437d12223bfd/files/cover.jpg","short_description":"Lorem |
| + | #8","cover":"/sites/58c165b387f64357b620338d/content_entry58c165b487f64357b62033a6/58c165b887f64357b62033fb/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: Fri, 17 Jun 2016 08:02:14 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:56 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=HyqKxyBLmEH9x_GzYnWY&content_entry%5B_slug%5D=update-number-1&content_entry%5Bcategory%5D%5Ben%5D=General&content_entry%5Bcategory%5D%5Bfr%5D=G%C3%A9n%C3%A9ral&content_entry%5Bdate%5D=2009-05-12&content_entry%5Btext%5D=added+some+free+stuff&content_entry%5Btitle%5D=Update+%231 |
| + | string: auth_token=2A9iTQyoACHbA4eAVLCH&content_entry%5B_slug%5D=update-number-1&content_entry%5Bcategory%5D%5Ben%5D=General&content_entry%5Bcategory%5D%5Bfr%5D=G%C3%A9n%C3%A9ral&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:14 GMT |
| + | - Thu, 09 Mar 2017 14:24:56 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -8517,43 +8517,43 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"9440dfd1c9c6881d96ce774eed86256d" |
| + | - W/"f9c1a7e740cafe6d67f63e4f2048ccd4" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 663aa0c8-d6ef-4d40-8cf4-ffb4e1375f85 |
| + | - 31be3997-911e-4f8f-a4b6-9273c5908ac8 |
| X-Runtime: | |
| - | - '0.065859' |
| + | - '0.097777' |
| Content-Length: | |
| - '362' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8687f6437d12223c00","created_at":"2016-06-17T08:02:14Z","updated_at":"2016-06-17T08:02:14Z","_slug":"update-number-1","content_type_slug":"updates","_label":"Update |
| + | string: '{"_id":"58c165b887f64357b62033fe","created_at":"2017-03-09T14:24:56Z","updated_at":"2017-03-09T14:24:56Z","_slug":"update-number-1","content_type_slug":"updates","_label":"Update |
| #1","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Update | |
| #1","text":"added some free stuff","category":null,"date":"2009-05-12"}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:15 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:56 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=HyqKxyBLmEH9x_GzYnWY&content_entry%5B_slug%5D=update-number-2&content_entry%5Bcategory%5D%5Ben%5D=General&content_entry%5Bcategory%5D%5Bfr%5D=G%C3%A9n%C3%A9ral&content_entry%5Bdate%5D=2009-05-23&content_entry%5Btext%5D=added+a+chatroom&content_entry%5Btitle%5D=Update+%232 |
| + | string: auth_token=2A9iTQyoACHbA4eAVLCH&content_entry%5B_slug%5D=update-number-2&content_entry%5Bcategory%5D%5Ben%5D=General&content_entry%5Bcategory%5D%5Bfr%5D=G%C3%A9n%C3%A9ral&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:15 GMT |
| + | - Thu, 09 Mar 2017 14:24:56 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -8566,43 +8566,43 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"d6364fe18b1d3a71886fbadd084b2a7f" |
| + | - W/"1e9ea5e10aa87633794544b05c67b7c5" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 3ecc7d14-101e-456b-a82b-820d8a47bec0 |
| + | - fb3fc882-f08f-450f-a03c-e176d053a51c |
| X-Runtime: | |
| - | - '0.061922' |
| + | - '0.081075' |
| Content-Length: | |
| - '357' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8787f6437d12223c03","created_at":"2016-06-17T08:02:15Z","updated_at":"2016-06-17T08:02:15Z","_slug":"update-number-2","content_type_slug":"updates","_label":"Update |
| + | string: '{"_id":"58c165b887f64357b6203401","created_at":"2017-03-09T14:24:56Z","updated_at":"2017-03-09T14:24:56Z","_slug":"update-number-2","content_type_slug":"updates","_label":"Update |
| #2","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Update | |
| #2","text":"added a chatroom","category":null,"date":"2009-05-23"}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:15 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:56 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=HyqKxyBLmEH9x_GzYnWY&content_entry%5B_slug%5D=update-number-3&content_entry%5Bcategory%5D%5Ben%5D=General&content_entry%5Bcategory%5D%5Bfr%5D=G%C3%A9n%C3%A9ral&content_entry%5Bdate%5D=2009-06-29&content_entry%5Btext%5D=site+redesign&content_entry%5Btitle%5D=Update+%233 |
| + | string: auth_token=2A9iTQyoACHbA4eAVLCH&content_entry%5B_slug%5D=update-number-3&content_entry%5Bcategory%5D%5Ben%5D=General&content_entry%5Bcategory%5D%5Bfr%5D=G%C3%A9n%C3%A9ral&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:15 GMT |
| + | - Thu, 09 Mar 2017 14:24:56 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -8615,43 +8615,43 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"c00037538f0e62f29e608510f34e1f7f" |
| + | - W/"0c1e09ef82bbb1bce0889dd1ac8fdd56" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - c7d593d8-1115-4545-9db5-c227b672625e |
| + | - 1f9b1bbe-d353-4e1d-b158-255a64522ba3 |
| X-Runtime: | |
| - | - '0.069095' |
| + | - '0.073839' |
| Content-Length: | |
| - '354' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8787f6437d12223c06","created_at":"2016-06-17T08:02:15Z","updated_at":"2016-06-17T08:02:15Z","_slug":"update-number-3","content_type_slug":"updates","_label":"Update |
| + | string: '{"_id":"58c165b887f64357b6203404","created_at":"2017-03-09T14:24:56Z","updated_at":"2017-03-09T14:24:56Z","_slug":"update-number-3","content_type_slug":"updates","_label":"Update |
| #3","_position":2,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Update | |
| #3","text":"site redesign","category":null,"date":"2009-06-29"}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:15 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:56 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=HyqKxyBLmEH9x_GzYnWY&content_entry%5B_slug%5D=update-number-4&content_entry%5Bcategory%5D%5Ben%5D=General&content_entry%5Bcategory%5D%5Bfr%5D=G%C3%A9n%C3%A9ral&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=2A9iTQyoACHbA4eAVLCH&content_entry%5B_slug%5D=update-number-4&content_entry%5Bcategory%5D%5Ben%5D=General&content_entry%5Bcategory%5D%5Bfr%5D=G%C3%A9n%C3%A9ral&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:15 GMT |
| + | - Thu, 09 Mar 2017 14:24:56 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -8664,43 +8664,43 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"12e6873d654fb4c243e25a338c842f51" |
| + | - W/"48527c154b19eb42cee84964f05655d1" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 11024763-34ae-4f75-99b9-0607c1fa04fb |
| + | - 51f7a6cc-ee80-4864-9e13-5dcf80f0e83d |
| X-Runtime: | |
| - | - '0.065385' |
| + | - '0.090531' |
| Content-Length: | |
| - '361' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8787f6437d12223c09","created_at":"2016-06-17T08:02:15Z","updated_at":"2016-06-17T08:02:15Z","_slug":"update-number-4","content_type_slug":"updates","_label":"Update |
| + | string: '{"_id":"58c165b887f64357b6203407","created_at":"2017-03-09T14:24:56Z","updated_at":"2017-03-09T14:24:56Z","_slug":"update-number-4","content_type_slug":"updates","_label":"Update |
| #4","_position":3,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Update | |
| #4","text":"NEW ALBUM FINISHED!!","category":null,"date":"2009-10-09"}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:15 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:56 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=HyqKxyBLmEH9x_GzYnWY&content_entry%5B_slug%5D=update-number-5&content_entry%5Bcategory%5D%5Ben%5D=General&content_entry%5Bcategory%5D%5Bfr%5D=G%C3%A9n%C3%A9ral&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=2A9iTQyoACHbA4eAVLCH&content_entry%5B_slug%5D=update-number-5&content_entry%5Bcategory%5D%5Ben%5D=General&content_entry%5Bcategory%5D%5Bfr%5D=G%C3%A9n%C3%A9ral&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:15 GMT |
| + | - Thu, 09 Mar 2017 14:24:56 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -8713,43 +8713,43 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"8101cd492e81fac3450d896165759a37" |
| + | - W/"b2791f15a69a7c33833652f302176670" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 7d9c3fcb-d8ae-4e0a-a6d9-b0d14086dbb5 |
| + | - 14969177-15b7-482c-994b-d49fbc2c790a |
| X-Runtime: | |
| - | - '0.063249' |
| + | - '0.068895' |
| Content-Length: | |
| - '364' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8787f6437d12223c0c","created_at":"2016-06-17T08:02:15Z","updated_at":"2016-06-17T08:02:15Z","_slug":"update-number-5","content_type_slug":"updates","_label":"Update |
| + | string: '{"_id":"58c165b887f64357b620340a","created_at":"2017-03-09T14:24:56Z","updated_at":"2017-03-09T14:24:56Z","_slug":"update-number-5","content_type_slug":"updates","_label":"Update |
| #5","_position":4,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Update | |
| #5","text":"brian posted a new post","category":null,"date":"2009-11-02"}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:15 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:56 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=HyqKxyBLmEH9x_GzYnWY&content_entry%5B_slug%5D=update-number-6&content_entry%5Bcategory%5D%5Ben%5D=General&content_entry%5Bcategory%5D%5Bfr%5D=G%C3%A9n%C3%A9ral&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=2A9iTQyoACHbA4eAVLCH&content_entry%5B_slug%5D=update-number-6&content_entry%5Bcategory%5D%5Ben%5D=General&content_entry%5Bcategory%5D%5Bfr%5D=G%C3%A9n%C3%A9ral&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:15 GMT |
| + | - Thu, 09 Mar 2017 14:24:56 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -8762,43 +8762,43 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"916649cfbdf7105d49328e355da5bc83" |
| + | - W/"45cc667909c14c65f9de3c68df282062" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 4c4b0c33-8928-404e-8d11-97ad25160bef |
| + | - 12e53e31-c755-4954-b3e6-c8411e2a65e3 |
| X-Runtime: | |
| - | - '0.065283' |
| + | - '0.073198' |
| Content-Length: | |
| - '363' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8787f6437d12223c0f","created_at":"2016-06-17T08:02:15Z","updated_at":"2016-06-17T08:02:15Z","_slug":"update-number-6","content_type_slug":"updates","_label":"Update |
| + | string: '{"_id":"58c165b887f64357b620340d","created_at":"2017-03-09T14:24:56Z","updated_at":"2017-03-09T14:24:56Z","_slug":"update-number-6","content_type_slug":"updates","_label":"Update |
| #6","_position":5,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Update | |
| #6","text":"john posted a new post","category":null,"date":"2009-11-16"}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:15 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:56 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/5763ae8687f6437d12223c00.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/58c165b887f64357b62033fe.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&content_entry%5B_slug%5D=mise-a-jour-number-1&content_entry%5Btext%5D=phrase+FR&content_entry%5Btitle%5D=Mise+a+jour+%231 |
| + | string: auth_token=2A9iTQyoACHbA4eAVLCH&content_entry%5B_slug%5D=mise-a-jour-number-1&content_entry%5Btext%5D=phrase+FR&content_entry%5Btitle%5D=Mise+a+jour+%231 |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:15 GMT |
| + | - Thu, 09 Mar 2017 14:24:56 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - fr | |
| Content-Type: | |
| @@ | @@ -8811,43 +8811,43 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"cf34e69d6e378de16290eb38fbb28054" |
| + | - W/"b5712e28ad478672a56709905c180cd2" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - aa67f81b-456f-41cf-8747-034fec5d45ec |
| + | - 0b438233-c3a5-4937-9ff0-8a0a5df0f37b |
| X-Runtime: | |
| - | - '0.072988' |
| + | - '0.079233' |
| Content-Length: | |
| - '365' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8687f6437d12223c00","created_at":"2016-06-17T08:02:14Z","updated_at":"2016-06-17T08:02:15Z","_slug":"mise-a-jour-number-1","content_type_slug":"updates","_label":"Mise |
| + | string: '{"_id":"58c165b887f64357b62033fe","created_at":"2017-03-09T14:24:56Z","updated_at":"2017-03-09T14:24:56Z","_slug":"mise-a-jour-number-1","content_type_slug":"updates","_label":"Mise |
| a jour #1","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Mise | |
| a jour #1","text":"phrase FR","category":null,"date":"2009-05-12"}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:15 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:56 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/5763ae8787f6437d12223c03.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/58c165b887f64357b6203401.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&content_entry%5B_slug%5D=mise-a-jour-number-2&content_entry%5Btext%5D=phrase+FR&content_entry%5Btitle%5D=Mise+a+jour+%232 |
| + | string: auth_token=2A9iTQyoACHbA4eAVLCH&content_entry%5B_slug%5D=mise-a-jour-number-2&content_entry%5Btext%5D=phrase+FR&content_entry%5Btitle%5D=Mise+a+jour+%232 |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:15 GMT |
| + | - Thu, 09 Mar 2017 14:24:56 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - fr | |
| Content-Type: | |
| @@ | @@ -8860,43 +8860,43 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"1757df30cee0e3d2c6c33537a4b1be72" |
| + | - W/"6d2618db76d2a33252411fb8ff1cf275" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 723d2b1d-7956-42be-b1f7-1958ad15a7cb |
| + | - 65f803e5-5509-4820-8d14-5ed9b3e35df4 |
| X-Runtime: | |
| - | - '0.084885' |
| + | - '0.077280' |
| Content-Length: | |
| - '365' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8787f6437d12223c03","created_at":"2016-06-17T08:02:15Z","updated_at":"2016-06-17T08:02:15Z","_slug":"mise-a-jour-number-2","content_type_slug":"updates","_label":"Mise |
| + | string: '{"_id":"58c165b887f64357b6203401","created_at":"2017-03-09T14:24:56Z","updated_at":"2017-03-09T14:24:56Z","_slug":"mise-a-jour-number-2","content_type_slug":"updates","_label":"Mise |
| a jour #2","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Mise | |
| a jour #2","text":"phrase FR","category":null,"date":"2009-05-23"}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:15 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:56 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/5763ae8787f6437d12223c06.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/58c165b887f64357b6203404.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&content_entry%5B_slug%5D=mise-a-jour-number-3&content_entry%5Btext%5D=phrase+FR&content_entry%5Btitle%5D=Mise+a+jour+%233 |
| + | string: auth_token=2A9iTQyoACHbA4eAVLCH&content_entry%5B_slug%5D=mise-a-jour-number-3&content_entry%5Btext%5D=phrase+FR&content_entry%5Btitle%5D=Mise+a+jour+%233 |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:15 GMT |
| + | - Thu, 09 Mar 2017 14:24:57 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - fr | |
| Content-Type: | |
| @@ | @@ -8909,43 +8909,43 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"131e28c015181807bda5a8373b98ab6d" |
| + | - W/"f40fe22c79d9312eb6101287a1cc199d" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 33d9754a-2944-4887-a76a-c7aed3ba36e8 |
| + | - 0fc8888d-05cb-43b1-ae12-b76ebffaf0b0 |
| X-Runtime: | |
| - | - '0.079066' |
| + | - '0.088975' |
| Content-Length: | |
| - '365' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8787f6437d12223c06","created_at":"2016-06-17T08:02:15Z","updated_at":"2016-06-17T08:02:15Z","_slug":"mise-a-jour-number-3","content_type_slug":"updates","_label":"Mise |
| + | string: '{"_id":"58c165b887f64357b6203404","created_at":"2017-03-09T14:24:56Z","updated_at":"2017-03-09T14:24:57Z","_slug":"mise-a-jour-number-3","content_type_slug":"updates","_label":"Mise |
| a jour #3","_position":2,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Mise | |
| a jour #3","text":"phrase FR","category":null,"date":"2009-06-29"}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:15 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:57 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/5763ae8787f6437d12223c09.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/58c165b887f64357b6203407.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&content_entry%5B_slug%5D=mise-a-jour-number-4&content_entry%5Btext%5D=phrase+FR&content_entry%5Btitle%5D=Mise+a+jour+%234 |
| + | string: auth_token=2A9iTQyoACHbA4eAVLCH&content_entry%5B_slug%5D=mise-a-jour-number-4&content_entry%5Btext%5D=phrase+FR&content_entry%5Btitle%5D=Mise+a+jour+%234 |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:15 GMT |
| + | - Thu, 09 Mar 2017 14:24:57 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - fr | |
| Content-Type: | |
| @@ | @@ -8958,43 +8958,43 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"618c26695890cfd8b4cb5b343f696d0c" |
| + | - W/"236b79fc94efb11b8b2fa2c0eb0622f2" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - a2f87a9d-c58e-442c-9621-fffa842cf338 |
| + | - f397fe52-028f-4c1e-b93c-6db415041fd9 |
| X-Runtime: | |
| - | - '0.073159' |
| + | - '0.106311' |
| Content-Length: | |
| - '365' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8787f6437d12223c09","created_at":"2016-06-17T08:02:15Z","updated_at":"2016-06-17T08:02:15Z","_slug":"mise-a-jour-number-4","content_type_slug":"updates","_label":"Mise |
| + | string: '{"_id":"58c165b887f64357b6203407","created_at":"2017-03-09T14:24:56Z","updated_at":"2017-03-09T14:24:57Z","_slug":"mise-a-jour-number-4","content_type_slug":"updates","_label":"Mise |
| a jour #4","_position":3,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Mise | |
| a jour #4","text":"phrase FR","category":null,"date":"2009-10-09"}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:15 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:57 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/5763ae8787f6437d12223c0c.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/58c165b887f64357b620340a.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&content_entry%5B_slug%5D=mise-a-jour-number-5&content_entry%5Btext%5D=phrase+FR&content_entry%5Btitle%5D=Mise+a+jour+%235 |
| + | string: auth_token=2A9iTQyoACHbA4eAVLCH&content_entry%5B_slug%5D=mise-a-jour-number-5&content_entry%5Btext%5D=phrase+FR&content_entry%5Btitle%5D=Mise+a+jour+%235 |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:15 GMT |
| + | - Thu, 09 Mar 2017 14:24:57 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - fr | |
| Content-Type: | |
| @@ | @@ -9007,43 +9007,43 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"20b16be6b8fd308b565a3218225b7819" |
| + | - W/"63f90b324a2e7e46e37516c8d17240bf" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 60fe14a6-2873-4a21-9fca-452ce6b25def |
| + | - 1b4ffcd5-c9dd-4bc8-a5a6-efec57ebabe1 |
| X-Runtime: | |
| - | - '0.087049' |
| + | - '0.100025' |
| Content-Length: | |
| - '365' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8787f6437d12223c0c","created_at":"2016-06-17T08:02:15Z","updated_at":"2016-06-17T08:02:15Z","_slug":"mise-a-jour-number-5","content_type_slug":"updates","_label":"Mise |
| + | string: '{"_id":"58c165b887f64357b620340a","created_at":"2017-03-09T14:24:56Z","updated_at":"2017-03-09T14:24:57Z","_slug":"mise-a-jour-number-5","content_type_slug":"updates","_label":"Mise |
| a jour #5","_position":4,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Mise | |
| a jour #5","text":"phrase FR","category":null,"date":"2009-11-02"}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:16 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:57 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/5763ae8787f6437d12223c0f.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/58c165b887f64357b620340d.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&content_entry%5B_slug%5D=mise-a-jour-number-6&content_entry%5Btext%5D=phrase+FR&content_entry%5Btitle%5D=Mise+a+jour+%236 |
| + | string: auth_token=2A9iTQyoACHbA4eAVLCH&content_entry%5B_slug%5D=mise-a-jour-number-6&content_entry%5Btext%5D=phrase+FR&content_entry%5Btitle%5D=Mise+a+jour+%236 |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:16 GMT |
| + | - Thu, 09 Mar 2017 14:24:57 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - fr | |
| Content-Type: | |
| @@ | @@ -9056,43 +9056,43 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"71cdf8867f2b337b66f1a6f44af6b4c5" |
| + | - W/"7d09d0dd88f92a8c7db034a9dcf69bba" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 65a26963-ad47-44c5-9ba1-9a868feb269f |
| + | - '07679fb8-7c8e-40ba-881c-393e41f106a2' |
| X-Runtime: | |
| - | - '0.103316' |
| + | - '0.148321' |
| Content-Length: | |
| - '365' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8787f6437d12223c0f","created_at":"2016-06-17T08:02:15Z","updated_at":"2016-06-17T08:02:16Z","_slug":"mise-a-jour-number-6","content_type_slug":"updates","_label":"Mise |
| + | string: '{"_id":"58c165b887f64357b620340d","created_at":"2017-03-09T14:24:56Z","updated_at":"2017-03-09T14:24:57Z","_slug":"mise-a-jour-number-6","content_type_slug":"updates","_label":"Mise |
| a jour #6","_position":5,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Mise | |
| a jour #6","text":"phrase FR","category":null,"date":"2009-11-16"}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:16 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:57 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/5763ae8687f6437d12223be8.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/58c165b787f64357b62033e6.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&content_entry%5Bband%5D=pearl-jam |
| + | string: auth_token=2A9iTQyoACHbA4eAVLCH&content_entry%5Bband%5D=pearl-jam |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:16 GMT |
| + | - Thu, 09 Mar 2017 14:24:57 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -9105,47 +9105,47 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"f5555e23c90360b63cf3c50ad59189ab" |
| + | - W/"e1ecad7ddd337f50d8c6faa770ab5a71" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 3a418f0b-af70-45cb-9582-8ce31db407e0 |
| + | - 3d39d947-d647-4654-95bb-487fd236ea70 |
| X-Runtime: | |
| - | - '0.081569' |
| + | - '0.135315' |
| Content-Length: | |
| - '790' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8687f6437d12223be8","created_at":"2016-06-17T08:02:14Z","updated_at":"2016-06-17T08:02:16Z","_slug":"song-number-1","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"58c165b787f64357b62033e6","created_at":"2017-03-09T14:24:55Z","updated_at":"2017-03-09T14:24:57Z","_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/5763ae8287f6437d12223b8f/content_entry5763ae8387f6437d12223ba8/5763ae8687f6437d12223be8/files/cover.jpg","short_description":"Lorem |
| + | #1","cover":"/sites/58c165b387f64357b620338d/content_entry58c165b487f64357b62033a6/58c165b787f64357b62033e6/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: Fri, 17 Jun 2016 08:02:16 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:57 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/5763ae8687f6437d12223beb.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/58c165b787f64357b62033e9.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&content_entry%5Bband%5D=pearl-jam |
| + | string: auth_token=2A9iTQyoACHbA4eAVLCH&content_entry%5Bband%5D=pearl-jam |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:16 GMT |
| + | - Thu, 09 Mar 2017 14:24:57 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -9158,47 +9158,47 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"248bd35367c21a975cf5f881aaa25b4e" |
| + | - W/"486f20ebaa3430ba02d08c28d9e37720" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - d12cd082-f459-446b-8254-f98264008930 |
| + | - 7378093e-ad9f-4002-859d-3b88b86fcd08 |
| X-Runtime: | |
| - | - '0.085203' |
| + | - '0.092335' |
| Content-Length: | |
| - '790' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8687f6437d12223beb","created_at":"2016-06-17T08:02:14Z","updated_at":"2016-06-17T08:02:16Z","_slug":"song-number-2","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"58c165b787f64357b62033e9","created_at":"2017-03-09T14:24:55Z","updated_at":"2017-03-09T14:24:57Z","_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/5763ae8287f6437d12223b8f/content_entry5763ae8387f6437d12223ba8/5763ae8687f6437d12223beb/files/cover.jpg","short_description":"Lorem |
| + | #2","cover":"/sites/58c165b387f64357b620338d/content_entry58c165b487f64357b62033a6/58c165b787f64357b62033e9/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: Fri, 17 Jun 2016 08:02:16 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:58 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/5763ae8687f6437d12223bee.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/58c165b787f64357b62033ec.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&content_entry%5Bband%5D=pearl-jam |
| + | string: auth_token=2A9iTQyoACHbA4eAVLCH&content_entry%5Bband%5D=pearl-jam |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:16 GMT |
| + | - Thu, 09 Mar 2017 14:24:58 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -9211,47 +9211,47 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"e9e89c0022cb70d6c55c6604c1466c16" |
| + | - W/"7b5901d48706a71529315f60bb738589" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 22d8b454-bc21-4d99-ba00-3365057578cd |
| + | - 2a10cfd3-edb6-4d62-9d11-f84bc50550fb |
| X-Runtime: | |
| - | - '0.088040' |
| + | - '0.086759' |
| Content-Length: | |
| - '790' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8687f6437d12223bee","created_at":"2016-06-17T08:02:14Z","updated_at":"2016-06-17T08:02:16Z","_slug":"song-number-3","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"58c165b787f64357b62033ec","created_at":"2017-03-09T14:24:55Z","updated_at":"2017-03-09T14:24:58Z","_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/5763ae8287f6437d12223b8f/content_entry5763ae8387f6437d12223ba8/5763ae8687f6437d12223bee/files/cover.jpg","short_description":"Lorem |
| + | #3","cover":"/sites/58c165b387f64357b620338d/content_entry58c165b487f64357b62033a6/58c165b787f64357b62033ec/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: Fri, 17 Jun 2016 08:02:16 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:58 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/5763ae8687f6437d12223bf1.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/58c165b787f64357b62033ef.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&content_entry%5Bband%5D=pearl-jam |
| + | string: auth_token=2A9iTQyoACHbA4eAVLCH&content_entry%5Bband%5D=pearl-jam |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:16 GMT |
| + | - Thu, 09 Mar 2017 14:24:58 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -9264,47 +9264,47 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"f3929f22bf9e8179ab8b10f9af75b542" |
| + | - W/"b05e9e48c5ce153e05053d67e27bea81" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - c37bbdcc-6251-4264-aec6-2a6d5fc3f74b |
| + | - b8025043-627a-476f-8cc7-1ef771e560f4 |
| X-Runtime: | |
| - | - '0.086001' |
| + | - '0.096289' |
| Content-Length: | |
| - '790' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8687f6437d12223bf1","created_at":"2016-06-17T08:02:14Z","updated_at":"2016-06-17T08:02:16Z","_slug":"song-number-4","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"58c165b787f64357b62033ef","created_at":"2017-03-09T14:24:55Z","updated_at":"2017-03-09T14:24:58Z","_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/5763ae8287f6437d12223b8f/content_entry5763ae8387f6437d12223ba8/5763ae8687f6437d12223bf1/files/cover.jpg","short_description":"Lorem |
| + | #4","cover":"/sites/58c165b387f64357b620338d/content_entry58c165b487f64357b62033a6/58c165b787f64357b62033ef/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: Fri, 17 Jun 2016 08:02:16 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:58 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/5763ae8687f6437d12223bf4.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/58c165b787f64357b62033f2.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&content_entry%5Bband%5D=the-who |
| + | string: auth_token=2A9iTQyoACHbA4eAVLCH&content_entry%5Bband%5D=the-who |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:16 GMT |
| + | - Thu, 09 Mar 2017 14:24:58 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -9317,47 +9317,47 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"f4dd13864deca931ef6d634b88eff118" |
| + | - W/"33d4a751e8695e203d37a13a23fe4b6a" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 4be4efc4-a5f0-4388-b90f-b8d1dcc0d8bc |
| + | - d0f96b0d-b7ad-491b-a029-6491c7b96984 |
| X-Runtime: | |
| - | - '0.090402' |
| + | - '0.100881' |
| Content-Length: | |
| - '788' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8687f6437d12223bf4","created_at":"2016-06-17T08:02:14Z","updated_at":"2016-06-17T08:02:16Z","_slug":"song-number-5","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"58c165b787f64357b62033f2","created_at":"2017-03-09T14:24:55Z","updated_at":"2017-03-09T14:24:58Z","_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/5763ae8287f6437d12223b8f/content_entry5763ae8387f6437d12223ba8/5763ae8687f6437d12223bf4/files/cover.jpg","short_description":"Lorem |
| + | #5","cover":"/sites/58c165b387f64357b620338d/content_entry58c165b487f64357b62033a6/58c165b787f64357b62033f2/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: Fri, 17 Jun 2016 08:02:16 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:58 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/5763ae8687f6437d12223bf7.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/58c165b787f64357b62033f5.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&content_entry%5Bband%5D=the-who |
| + | string: auth_token=2A9iTQyoACHbA4eAVLCH&content_entry%5Bband%5D=the-who |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:16 GMT |
| + | - Thu, 09 Mar 2017 14:24:58 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -9370,47 +9370,47 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"d6ea468e5cfc79fcbd806e8f1a27b09d" |
| + | - W/"2117187d4f880d3fb0679f1a3dd5edbf" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 6e45b5e4-c9be-4b88-af38-9d85a2beb508 |
| + | - 14b81360-3b14-42b1-be62-5a6ba43625be |
| X-Runtime: | |
| - | - '0.083394' |
| + | - '0.157893' |
| Content-Length: | |
| - '788' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8687f6437d12223bf7","created_at":"2016-06-17T08:02:14Z","updated_at":"2016-06-17T08:02:16Z","_slug":"song-number-6","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"58c165b787f64357b62033f5","created_at":"2017-03-09T14:24:55Z","updated_at":"2017-03-09T14:24:58Z","_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/5763ae8287f6437d12223b8f/content_entry5763ae8387f6437d12223ba8/5763ae8687f6437d12223bf7/files/cover.jpg","short_description":"Lorem |
| + | #6","cover":"/sites/58c165b387f64357b620338d/content_entry58c165b487f64357b62033a6/58c165b787f64357b62033f5/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: Fri, 17 Jun 2016 08:02:17 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:58 GMT |
| - request: | |
| method: get | |
| - | uri: http://localhost:3000/locomotive/api/v3/pages/fullpaths.json?auth_token=HyqKxyBLmEH9x_GzYnWY |
| + | uri: http://localhost:3000/locomotive/api/v3/pages/fullpaths.json?auth_token=2A9iTQyoACHbA4eAVLCH |
| body: | |
| encoding: UTF-8 | |
| string: '' | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:17 GMT |
| + | - Thu, 09 Mar 2017 14:24:58 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - en | |
| response: | |
| @@ | @@ -9421,41 +9421,41 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"552dc47e19baab9862241c8f99249bb2" |
| + | - W/"f514b85e3bd900bc00f6c200f0f6fbe3" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 540cbc8b-3fde-4219-82bd-1f06542fa912 |
| + | - '09630e29-d0de-401f-9289-96759e43760f' |
| X-Runtime: | |
| - | - '0.029516' |
| + | - '0.063291' |
| Content-Length: | |
| - '135' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '[{"_id":"5763ae8287f6437d12223b91","fullpath":"index","handle":null},{"_id":"5763ae8387f6437d12223b92","fullpath":"404","handle":null}]' |
| + | string: '[{"_id":"58c165b387f64357b620338f","fullpath":"index","handle":null},{"_id":"58c165b387f64357b6203390","fullpath":"404","handle":null}]' |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:17 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:58 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/pages/5763ae8387f6437d12223b92.json |
| + | uri: http://localhost:3000/locomotive/api/v3/pages/58c165b387f64357b6203390.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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 |
| + | string: auth_token=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:17 GMT |
| + | - Thu, 09 Mar 2017 14:24:58 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - en | |
| Content-Type: | |
| @@ | @@ -9468,44 +9468,44 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"d6e820ce50f6ba1d5e563795a14be5d9" |
| + | - W/"9edfbdfa771371a9eeecc0a731c986b6" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 4b92f3c9-7591-4469-926c-81b4a69f5cee |
| + | - 6168fcdc-d16f-4181-a5af-a22d72ca12a4 |
| X-Runtime: | |
| - | - '0.042130' |
| + | - '0.091356' |
| Content-Length: | |
| - '773' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8387f6437d12223b92","created_at":"2016-06-17T08:02:11Z","updated_at":"2016-06-17T08:02:17Z","title":"Page |
| + | string: '{"_id":"58c165b387f64357b6203390","created_at":"2017-03-09T14:24:51Z","updated_at":"2017-03-09T14:24:58Z","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: Fri, 17 Jun 2016 08:02:17 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:58 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/pages/5763ae8287f6437d12223b91.json |
| + | uri: http://localhost:3000/locomotive/api/v3/pages/58c165b387f64357b620338f.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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%2F5763ae8287f6437d12223b8f%2Fassets%2F5763ae8487f6437d12223bc2%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=2A9iTQyoACHbA4eAVLCH&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%2F58c165b387f64357b620338d%2Fassets%2F58c165b587f64357b62033c0%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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:17 GMT |
| + | - Thu, 09 Mar 2017 14:24:58 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - en | |
| Content-Type: | |
| @@ | @@ -9518,18 +9518,18 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"d383c73e78044ca43aba46d043793845" |
| + | - W/"cf59bf8fc2d461a13529303a13eeb9fb" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - f1027ef2-39d1-419d-a1c1-677acdcbf889 |
| + | - 5c7bfa5e-5dfe-41cf-b502-36e3e6fbbbd7 |
| X-Runtime: | |
| - | - '0.044852' |
| + | - '0.053062' |
| Content-Length: | |
| - '5289' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8287f6437d12223b91","created_at":"2016-06-17T08:02:10Z","updated_at":"2016-06-17T08:02:17Z","title":"Home |
| + | string: '{"_id":"58c165b387f64357b620338f","created_at":"2017-03-09T14:24:51Z","updated_at":"2017-03-09T14:24:58Z","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 | |
| @@ | @@ -9553,7 +9553,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/5763ae8287f6437d12223b8f/assets/5763ae8487f6437d12223bc2/photo.jpg{% |
| + | (602px by 397px)'' %}/sites/58c165b387f64357b620338d/assets/58c165b587f64357b62033c0/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 | |
| @@ | @@ -9583,28 +9583,28 @@ 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: Fri, 17 Jun 2016 08:02:17 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:58 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/pages/5763ae8287f6437d12223b91.json |
| + | uri: http://localhost:3000/locomotive/api/v3/pages/58c165b387f64357b620338f.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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%2F5763ae8287f6437d12223b8f%2Fassets%2F5763ae8487f6437d12223bc2%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=2A9iTQyoACHbA4eAVLCH&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%2F58c165b387f64357b620338d%2Fassets%2F58c165b587f64357b62033c0%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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:17 GMT |
| + | - Thu, 09 Mar 2017 14:24:58 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - fr | |
| Content-Type: | |
| @@ | @@ -9617,18 +9617,18 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"b8f52ad3d8eb45c4c1e61c88c892225e" |
| + | - W/"c6082248df7dca36caaf55466afc3e2e" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - c0b6ff2e-5b4b-4d8b-85fe-15a6628dbbd6 |
| + | - 5ae4d68e-61f7-4e5f-9ce9-0428f457de06 |
| X-Runtime: | |
| - | - '0.039450' |
| + | - '0.047115' |
| Content-Length: | |
| - '5294' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8287f6437d12223b91","created_at":"2016-06-17T08:02:10Z","updated_at":"2016-06-17T08:02:17Z","title":"Page |
| + | string: '{"_id":"58c165b387f64357b620338f","created_at":"2017-03-09T14:24:51Z","updated_at":"2017-03-09T14:24:59Z","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 | |
| @@ | @@ -9652,7 +9652,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/5763ae8287f6437d12223b8f/assets/5763ae8487f6437d12223bc2/photo.jpg{% |
| + | (602px by 397px)'' %}/sites/58c165b387f64357b620338d/assets/58c165b587f64357b62033c0/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 | |
| @@ | @@ -9682,7 +9682,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: Fri, 17 Jun 2016 08:02:17 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:59 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| @@ | @@ -13444,23 +13444,23 @@ http_interactions: |
| dGluY2lkdW50IHB1bHZpbmFyIGFjY3Vtc2FuLgo8L3A+CnslIGVuZGVkaXRh | |
| YmxlX2xvbmdfdGV4dCAlfQp7JSBlbmRibG9jayAlfQoNCi0tLS0tLS0tLS0t | |
| LS1SdWJ5TXVsdGlwYXJ0UG9zdA0KQ29udGVudC1EaXNwb3NpdGlvbjogZm9y | |
| - | bS1kYXRhOyBuYW1lPSJhdXRoX3Rva2VuIg0KDQpIeXFLeHlCTG1FSDl4X0d6 |
| - | WW5XWQ0KLS0tLS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0LS0NCg0K |
| + | bS1kYXRhOyBuYW1lPSJhdXRoX3Rva2VuIg0KDQoyQTlpVFF5b0FDSGJBNGVB |
| + | VkxDSA0KLS0tLS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0LS0NCg0K |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:17 GMT |
| + | - Thu, 09 Mar 2017 14:24:59 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| @@ | @@ -13473,19 +13473,19 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"be64471adf299c9d59351b1210d0a795" |
| + | - W/"281dea4f40d100038f87bfd1076ee458" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 7191d0e7-bec5-491b-a837-eda3dd809b76 |
| + | - c38a5539-449c-44b1-a547-6722ce18ce6c |
| X-Runtime: | |
| - | - '0.085206' |
| + | - '0.105363' |
| Content-Length: | |
| - | - '2632' |
| + | - '2642' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8987f6437d12223c29","created_at":"2016-06-17T08:02:17Z","updated_at":"2016-06-17T08:02:17Z","title":"About |
| - | Us","parent_id":"5763ae8287f6437d12223b91","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":"58c165bb87f64357b6203427","created_at":"2017-03-09T14:24:59Z","updated_at":"2017-03-09T14:24:59Z","title":"About |
| + | Us","parent_id":"58c165b387f64357b620338f","position":1,"handle":"about-us","depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en","fr","nb"],"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, | |
| @@ | @@ -13503,13 +13503,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":"5763ae8987f6437d12223c2a","created_at":"2016-06-17T08:02:17Z","updated_at":"2016-06-17T08:02:17Z","slug":"page_image","block":"banner","hint":null,"priority":0,"fixed":false,"content":"/sites/5763ae8287f6437d12223b8f/pages/5763ae8987f6437d12223c29/files/photo_2.jpg","type":"EditableFile"},{"_id":"5763ae8987f6437d12223c2b","created_at":"2016-06-17T08:02:17Z","updated_at":"2016-06-17T08:02:17Z","slug":"pitch","block":"banner","hint":null,"priority":0,"fixed":false,"content":"\u003ch2\u003eAbout |
| + | %}\n{% endblock %}\n","editable_elements":[{"_id":"58c165bb87f64357b6203428","created_at":"2017-03-09T14:24:59Z","updated_at":"2017-03-09T14:24:59Z","slug":"page_image","block":"banner","hint":null,"priority":0,"fixed":false,"content":"/sites/58c165b387f64357b620338d/pages/58c165bb87f64357b6203427/files/photo_2.jpg","type":"EditableFile"},{"_id":"58c165bb87f64357b6203429","created_at":"2017-03-09T14:24:59Z","updated_at":"2017-03-09T14:24:59Z","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: Fri, 17 Jun 2016 08:02:17 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:59 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/pages/5763ae8987f6437d12223c29.json |
| + | uri: http://localhost:3000/locomotive/api/v3/pages/58c165bb87f64357b6203427.json |
| body: | |
| encoding: ASCII-8BIT | |
| string: !binary |- | |
| @@ | @@ -17215,23 +17215,23 @@ http_interactions: |
| ZHVudCBwdWx2aW5hciBhY2N1bXNhbi4KPC9wPgp7JSBlbmRlZGl0YWJsZV9s | |
| b25nX3RleHQgJX0KeyUgZW5kYmxvY2sgJX0KDQotLS0tLS0tLS0tLS0tUnVi | |
| eU11bHRpcGFydFBvc3QNCkNvbnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0 | |
| - | YTsgbmFtZT0iYXV0aF90b2tlbiINCg0KSHlxS3h5QkxtRUg5eF9HelluV1kN |
| + | YTsgbmFtZT0iYXV0aF90b2tlbiINCg0KMkE5aVRReW9BQ0hiQTRlQVZMQ0gN |
| Ci0tLS0tLS0tLS0tLS1SdWJ5TXVsdGlwYXJ0UG9zdC0tDQoNCg== | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:17 GMT |
| + | - Thu, 09 Mar 2017 14:24:59 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - fr | |
| Content-Type: | |
| @@ | @@ -17246,19 +17246,19 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"fe0800b7f6f0e945f63fc920c7edbcae" |
| + | - W/"d3a6bcab62835c6e5b0733bc7d943a08" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 44bdffa0-3def-4f02-9a96-0ceb38844080 |
| + | - 1110b9eb-43ec-438c-8337-ff3c0bc0f201 |
| X-Runtime: | |
| - | - '0.055974' |
| + | - '0.077520' |
| Content-Length: | |
| - | - '2664' |
| + | - '2669' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8987f6437d12223c29","created_at":"2016-06-17T08:02:17Z","updated_at":"2016-06-17T08:02:17Z","title":"A |
| - | notre sujet","parent_id":"5763ae8287f6437d12223b91","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":"{% |
| + | string: '{"_id":"58c165bb87f64357b6203427","created_at":"2017-03-09T14:24:59Z","updated_at":"2017-03-09T14:24:59Z","title":"A |
| + | notre sujet","parent_id":"58c165b387f64357b620338f","position":1,"handle":"about-us","depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en","fr","nb"],"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, | |
| @@ | @@ -17276,31 +17276,31 @@ 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":"5763ae8987f6437d12223c2a","created_at":"2016-06-17T08:02:17Z","updated_at":"2016-06-17T08:02:17Z","slug":"page_image","block":"banner","hint":null,"priority":0,"fixed":false,"content":"/sites/5763ae8287f6437d12223b8f/pages/5763ae8987f6437d12223c29/files/photo.jpg","type":"EditableFile"},{"_id":"5763ae8987f6437d12223c2b","created_at":"2016-06-17T08:02:17Z","updated_at":"2016-06-17T08:02:17Z","slug":"pitch","block":"banner","hint":null,"priority":0,"fixed":false,"content":"\u003ch2\u003eA |
| + | %}\n{% endblock %}\n","editable_elements":[{"_id":"58c165bb87f64357b6203428","created_at":"2017-03-09T14:24:59Z","updated_at":"2017-03-09T14:24:59Z","slug":"page_image","block":"banner","hint":null,"priority":0,"fixed":false,"content":"/sites/58c165b387f64357b620338d/pages/58c165bb87f64357b6203427/files/photo.jpg","type":"EditableFile"},{"_id":"58c165bb87f64357b6203429","created_at":"2017-03-09T14:24:59Z","updated_at":"2017-03-09T14:24:59Z","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: Fri, 17 Jun 2016 08:02:17 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:59 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/pages/5763ae8987f6437d12223c29.json |
| + | uri: http://localhost:3000/locomotive/api/v3/pages/58c165bb87f64357b6203427.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:17 GMT |
| + | - Thu, 09 Mar 2017 14:24:59 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - nb | |
| Content-Type: | |
| @@ | @@ -17313,19 +17313,19 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"b65f9ff033fb34d96580a1894d757671" |
| + | - W/"9bb4fb8ecb542edf7dd821b00c5d8121" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - a44c202e-7935-4d14-8333-c226ecb1aa94 |
| + | - 5ccd54c4-b1f2-4d33-b190-c16bab99fe3c |
| X-Runtime: | |
| - | - '0.050579' |
| + | - '0.062677' |
| Content-Length: | |
| - '2639' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8987f6437d12223c29","created_at":"2016-06-17T08:02:17Z","updated_at":"2016-06-17T08:02:17Z","title":"Om |
| - | oss","parent_id":"5763ae8287f6437d12223b91","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":"{% |
| + | string: '{"_id":"58c165bb87f64357b6203427","created_at":"2017-03-09T14:24:59Z","updated_at":"2017-03-09T14:24:59Z","title":"Om |
| + | oss","parent_id":"58c165b387f64357b620338f","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, | |
| @@ | @@ -17343,31 +17343,31 @@ 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":"5763ae8987f6437d12223c2a","created_at":"2016-06-17T08:02:17Z","updated_at":"2016-06-17T08:02:17Z","slug":"page_image","block":"banner","hint":null,"priority":0,"fixed":false,"content":"/sites/5763ae8287f6437d12223b8f/pages/5763ae8987f6437d12223c29/files/photo_2.jpg","type":"EditableFile"},{"_id":"5763ae8987f6437d12223c2b","created_at":"2016-06-17T08:02:17Z","updated_at":"2016-06-17T08:02:17Z","slug":"pitch","block":"banner","hint":null,"priority":0,"fixed":false,"content":"\u003ch2\u003eAbout |
| + | %}\n{% endblock %}\n","editable_elements":[{"_id":"58c165bb87f64357b6203428","created_at":"2017-03-09T14:24:59Z","updated_at":"2017-03-09T14:24:59Z","slug":"page_image","block":"banner","hint":null,"priority":0,"fixed":false,"content":"/sites/58c165b387f64357b620338d/pages/58c165bb87f64357b6203427/files/photo_2.jpg","type":"EditableFile"},{"_id":"58c165bb87f64357b6203429","created_at":"2017-03-09T14:24:59Z","updated_at":"2017-03-09T14:24:59Z","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: Fri, 17 Jun 2016 08:02:17 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:59 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:17 GMT |
| + | - Thu, 09 Mar 2017 14:24:59 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -17378,18 +17378,18 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"c29280709e07033017bb18771b00e67f" |
| + | - W/"b77c36c3dfc1b8dfedfff460f6ff2eb1" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - e129cabd-3064-489c-a40e-32674515165b |
| + | - 484f0e86-52a1-4217-83ed-01f6420a4f0b |
| X-Runtime: | |
| - | - '0.049863' |
| + | - '0.076894' |
| Content-Length: | |
| - | - '2401' |
| + | - '2411' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8987f6437d12223c2c","created_at":"2016-06-17T08:02:17Z","updated_at":"2016-06-17T08:02:17Z","title":"Music","parent_id":"5763ae8287f6437d12223b91","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":"58c165bb87f64357b620342a","created_at":"2017-03-09T14:24:59Z","updated_at":"2017-03-09T14:24:59Z","title":"Music","parent_id":"58c165b387f64357b620338f","position":2,"handle":"our-music","depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en","fr","nb"],"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, | |
| @@ | @@ -17413,28 +17413,28 @@ 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: Fri, 17 Jun 2016 08:02:17 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:59 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/pages/5763ae8987f6437d12223c2c.json |
| + | uri: http://localhost:3000/locomotive/api/v3/pages/58c165bb87f64357b620342a.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:17 GMT |
| + | - Thu, 09 Mar 2017 14:24:59 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - fr | |
| Content-Type: | |
| @@ | @@ -17447,19 +17447,19 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"4b3b52ce8e0bb9551065442c09265fd5" |
| + | - W/"82ae3bf684349afa47960c41454695ae" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 89c7547d-61f5-4d6e-83aa-6b6e0a7b3040 |
| + | - 5c693065-e4e7-45f2-91ed-ae602b2a7474 |
| X-Runtime: | |
| - | - '0.050287' |
| + | - '0.054858' |
| Content-Length: | |
| - | - '2438' |
| + | - '2443' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8987f6437d12223c2c","created_at":"2016-06-17T08:02:17Z","updated_at":"2016-06-17T08:02:17Z","title":"Notre |
| - | musique","parent_id":"5763ae8287f6437d12223b91","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":"{% |
| + | string: '{"_id":"58c165bb87f64357b620342a","created_at":"2017-03-09T14:24:59Z","updated_at":"2017-03-09T14:24:59Z","title":"Notre |
| + | musique","parent_id":"58c165b387f64357b620338f","position":2,"handle":"our-music","depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en","fr","nb"],"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, | |
| @@ | @@ -17483,28 +17483,28 @@ 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: Fri, 17 Jun 2016 08:02:17 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:59 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:17 GMT |
| + | - Thu, 09 Mar 2017 14:24:59 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -17515,42 +17515,42 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"8b29c5328264276b05801f72d711f7bf" |
| + | - W/"2e0b4763cb603b302cc698e72f9db760" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 3bedea01-8091-41d9-9e70-9262a4d2b337 |
| + | - 6848e793-582e-4be7-ba7a-eabbea0736d0 |
| X-Runtime: | |
| - | - '0.055879' |
| + | - '0.056667' |
| Content-Length: | |
| - | - '718' |
| + | - '728' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8987f6437d12223c2d","created_at":"2016-06-17T08:02:17Z","updated_at":"2016-06-17T08:02:17Z","title":"Store","parent_id":"5763ae8287f6437d12223b91","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":"58c165bb87f64357b620342b","created_at":"2017-03-09T14:24:59Z","updated_at":"2017-03-09T14:24:59Z","title":"Store","parent_id":"58c165b387f64357b620338f","position":3,"handle":null,"depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en","fr","nb"],"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: Fri, 17 Jun 2016 08:02:17 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:59 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/pages/5763ae8987f6437d12223c2d.json |
| + | uri: http://localhost:3000/locomotive/api/v3/pages/58c165bb87f64357b620342b.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:17 GMT |
| + | - Thu, 09 Mar 2017 14:24:59 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - fr | |
| Content-Type: | |
| @@ | @@ -17563,41 +17563,41 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"b548c7617303a4786c134304f951ebd2" |
| + | - W/"229c11549f50e8713dbdba9bac205c8a" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 625424ee-9c5f-472b-82b3-d728a0ccff67 |
| + | - e86940e8-bc53-465e-9727-0a4decfd95ea |
| X-Runtime: | |
| - | - '0.044986' |
| + | - '0.055191' |
| Content-Length: | |
| - | - '711' |
| + | - '716' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8987f6437d12223c2d","created_at":"2016-06-17T08:02:17Z","updated_at":"2016-06-17T08:02:17Z","title":"Magasin","parent_id":"5763ae8287f6437d12223b91","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":"58c165bb87f64357b620342b","created_at":"2017-03-09T14:24:59Z","updated_at":"2017-03-09T14:24:59Z","title":"Magasin","parent_id":"58c165b387f64357b620338f","position":3,"handle":null,"depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en","fr","nb"],"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: Fri, 17 Jun 2016 08:02:17 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:59 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:17 GMT |
| + | - Thu, 09 Mar 2017 14:24:59 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -17608,19 +17608,19 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"3cf56885254c9243b0882d3fbae139c5" |
| + | - W/"d2642f5297d1f3b748e921d74b87fced" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 4a248db6-0d20-4837-b298-9c92ce3d5c9a |
| + | - a00297c8-dbf3-4a8f-9578-88d4dd897a36 |
| X-Runtime: | |
| - | - '0.050569' |
| + | - '0.055459' |
| Content-Length: | |
| - | - '3494' |
| + | - '3504' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8987f6437d12223c2e","created_at":"2016-06-17T08:02:17Z","updated_at":"2016-06-17T08:02:17Z","title":"Contact |
| - | Us","parent_id":"5763ae8287f6437d12223b91","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":"58c165bb87f64357b620342c","created_at":"2017-03-09T14:24:59Z","updated_at":"2017-03-09T14:24:59Z","title":"Contact |
| + | Us","parent_id":"58c165b387f64357b620338f","position":4,"handle":null,"depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en","fr","nb"],"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 | |
| @@ | @@ -17655,28 +17655,28 @@ 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: Fri, 17 Jun 2016 08:02:17 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:59 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:17 GMT |
| + | - Thu, 09 Mar 2017 14:24:59 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -17687,141 +17687,141 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"8b39b9841d0dd717297ea94acd15b5bb" |
| + | - W/"fa5d416f4307524c1e8c14657a0b1ede" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - e9d3ed6b-8cbd-4b61-875c-cda67f1472b9 |
| + | - 2e4b7299-fb9d-40a1-9187-0f59991bfe29 |
| X-Runtime: | |
| - | - '0.048131' |
| + | - '0.062303' |
| Content-Length: | |
| - | - '4459' |
| + | - '4469' |
| body: | |
| encoding: ASCII-8BIT | |
| string: !binary |- | |
| - | eyJfaWQiOiI1NzYzYWU4OTg3ZjY0MzdkMTIyMjNjMmYiLCJjcmVhdGVkX2F0 |
| - | IjoiMjAxNi0wNi0xN1QwODowMjoxN1oiLCJ1cGRhdGVkX2F0IjoiMjAxNi0w |
| - | Ni0xN1QwODowMjoxN1oiLCJ0aXRsZSI6IkV2ZW50cyIsInBhcmVudF9pZCI6 |
| - | IjU3NjNhZTgyODdmNjQzN2QxMjIyM2I5MSIsInBvc2l0aW9uIjo1LCJoYW5k |
| + | eyJfaWQiOiI1OGMxNjViYjg3ZjY0MzU3YjYyMDM0MmQiLCJjcmVhdGVkX2F0 |
| + | IjoiMjAxNy0wMy0wOVQxNDoyNDo1OVoiLCJ1cGRhdGVkX2F0IjoiMjAxNy0w |
| + | My0wOVQxNDoyNDo1OVoiLCJ0aXRsZSI6IkV2ZW50cyIsInBhcmVudF9pZCI6 |
| + | IjU4YzE2NWIzODdmNjQzNTdiNjIwMzM4ZiIsInBvc2l0aW9uIjo1LCJoYW5k |
| bGUiOiJldmVudHMiLCJkZXB0aCI6MSwicmVzcG9uc2VfdHlwZSI6InRleHQv | |
| aHRtbCIsImxpc3RlZCI6ZmFsc2UsInB1Ymxpc2hlZCI6dHJ1ZSwidHJhbnNs | |
| - | YXRlZF9pbiI6WyJlbiJdLCJjYWNoZV9lbmFibGVkIjp0cnVlLCJzbHVnIjoi |
| - | ZXZlbnRzIiwiZnVsbHBhdGgiOiJldmVudHMiLCJsb2NhbGl6ZWRfZnVsbHBh |
| - | dGhzIjp7ImVuIjoiZXZlbnRzIiwiZnIiOiJmci9ldmVudHMiLCJuYiI6Im5i |
| - | L2V2ZW50cyJ9LCJyZWRpcmVjdCI6ZmFsc2UsInJlZGlyZWN0X3VybCI6IiIs |
| - | InJlZGlyZWN0X3R5cGUiOjMwMSwidGVtcGxhdGl6ZWQiOmZhbHNlLCJ0ZW1w |
| - | bGF0aXplZF9mcm9tX3BhcmVudCI6ZmFsc2UsImNvbnRlbnRfdHlwZSI6bnVs |
| - | bCwiaXNfbGF5b3V0IjpmYWxzZSwiYWxsb3dfbGF5b3V0IjpmYWxzZSwidGVt |
| - | cGxhdGUiOiJ7JSBleHRlbmRzIHBhcmVudCAlfVxueyUgYmxvY2sgY29udGVu |
| - | dCAlfVxuXHUwMDNjcFx1MDAzZVRoYW5rIHlvdSB7eyBtZXNzYWdlLm5hbWUg |
| - | fX0gIVx1MDAzYy9wXHUwMDNlXG5cdTAwM2NkaXYgY2xhc3M9J3VuaXQgc2l6 |
| - | ZTJvZjMnIGlkPSdldmVudHMnXHUwMDNlXG4gIFx1MDAzY2gyXHUwMDNlVXBj |
| - | b21pbmcgZXZlbnRzXHUwMDNjL2gyXHUwMDNlXG4gIFx1MDAzY3VsIGNsYXNz |
| - | PSdsaXN0J1x1MDAzZVxuICAgIHslIGZvciBldmVudCBpbiBjb250ZW50cy5l |
| - | dmVudHMgJX1cbiAgICBcdTAwM2NsaVx1MDAzZVxuICAgICAgXHUwMDNjZW1c |
| - | dTAwM2V7eyBldmVudC5kYXRlIHwgbG9jYWxpemVkX2RhdGU6ICclYSwgJUIg |
| - | JWQsICVZJyB9fVx1MDAzYy9lbVx1MDAzZVxuICAgICAgXHUwMDI2bmJzcDst |
| - | XHUwMDI2bmJzcDtcbiAgICAgIHt7IGV2ZW50LnBsYWNlIH19LCB7eyBldmVu |
| - | dC5jaXR5IH19LCB7eyBldmVudC5zdGF0ZSB9fVxuICAgIFx1MDAzYy9saVx1 |
| - | MDAzZVxuICAgIHslIGVuZGZvciAlfVxuICBcdTAwM2MvdWxcdTAwM2Vcblx1 |
| - | MDAzYy9kaXZcdTAwM2Vcblx1MDAzY2RpdiBjbGFzcz0ndW5pdCBzaXplMW9m |
| - | MycgaWQ9J3NpZGViYXInXHUwMDNlXG4gIHslIG1vZGVsX2Zvcm0gJ21lc3Nh |
| - | Z2VzJywgaWQ6ICdjb250YWN0Zm9ybScgJX1cbiAgXHUwMDNjcFx1MDAzZVxu |
| - | ICAgIFx1MDAzY2xhYmVsIGZvcj0nbmFtZSdcdTAwM2VOYW1lXHUwMDNjL2xh |
| - | YmVsXHUwMDNlXG4gICAgXHUwMDNjaW5wdXQgaWQ9J25hbWUnIG5hbWU9J2Nv |
| - | bnRlbnRbbmFtZV0nIHBsYWNlaG9sZGVyPSdGaXJzdCBhbmQgbGFzdCBuYW1l |
| - | JyByZXF1aXJlZD0ncmVxdWlyZWQnIHRhYmluZGV4PScxJyB0eXBlPSd0ZXh0 |
| - | JyB2YWx1ZT0ne3sgbWVzc2FnZS5uYW1lIH19J1x1MDAzZVxuICAgIFx1MDAz |
| - | Y3NwYW5cdTAwM2V7eyBtZXNzYWdlLmVycm9ycy5uYW1lIH19XHUwMDNjL3Nw |
| - | YW5cdTAwM2VcbiAgXHUwMDNjL3BcdTAwM2VcbiAgXHUwMDNjcFx1MDAzZVxu |
| - | ICAgIFx1MDAzY2xhYmVsIGZvcj0nZW1haWwnXHUwMDNlRW1haWxcdTAwM2Mv |
| - | bGFiZWxcdTAwM2VcbiAgICBcdTAwM2NpbnB1dCBpZD0nZW1haWwnIG5hbWU9 |
| - | J2NvbnRlbnRbZW1haWxdJyBwbGFjZWhvbGRlcj0nZXhhbXBsZUBkb21haW4u |
| - | Y29tJyByZXF1aXJlZD0ncmVxdWlyZWQnIHRhYmluZGV4PScyJyB0eXBlPSd0 |
| - | ZXh0JyB2YWx1ZT0ne3sgbWVzc2FnZS5lbWFpbCB9fSdcdTAwM2VcbiAgICBc |
| - | dTAwM2NzcGFuXHUwMDNle3sgbWVzc2FnZS5lcnJvcnMuZW1haWwgfX1cdTAw |
| - | M2Mvc3Bhblx1MDAzZVxuICBcdTAwM2MvcFx1MDAzZVxuICBcdTAwM2NwXHUw |
| - | MDNlXG4gICAgXHUwMDNjbGFiZWwgZm9yPSdjb21tZW50J1x1MDAzZVlvdXIg |
| - | TWVzc2FnZVx1MDAzYy9sYWJlbFx1MDAzZVxuICAgIFx1MDAzY3RleHRhcmVh |
| - | IGlkPSdjb21tZW50JyBuYW1lPSdjb250ZW50W21lc3NhZ2VdJyByZXF1aXJl |
| - | ZD0ncmVxdWlyZWQnIHRhYmluZGV4PSczJ1x1MDAzZXt7IG1lc3NhZ2UubWVz |
| - | c2FnZSB9fVx1MDAzYy90ZXh0YXJlYVx1MDAzZVxuICAgIFx1MDAzY3NwYW5c |
| - | dTAwM2V7eyBtZXNzYWdlLmVycm9ycy5tZXNzYWdlIH19XHUwMDNjL3NwYW5c |
| - | dTAwM2VcbiAgXHUwMDNjL3BcdTAwM2VcbiAgXHUwMDNjcCBjbGFzcz0nYWN0 |
| - | aW9uJ1x1MDAzZVxuICAgIFx1MDAzY2lucHV0IG5hbWU9J3N1Ym1pdCcgdGFi |
| - | aW5kZXg9JzQnIHR5cGU9J3N1Ym1pdCcgdmFsdWU9J1NlbmQgTWVzc2FnZSdc |
| - | dTAwM2VcbiAgXHUwMDNjL3BcdTAwM2VcbiAgeyUgZW5kbW9kZWxfZm9ybSAl |
| - | fVxuICB7JSBlZGl0YWJsZV9sb25nX3RleHQgJ3NpZGViYXInICV9XG4gIFx1 |
| - | MDAzY3BcdTAwM2VcbiAgICBMb3JlbSBpcHN1bSBkb2xvciBzaXQgYW1ldCwg |
| - | Y29uc2VjdGV0dXIgYWRpcGlzY2luZyBlbGl0LiBDdXJhYml0dXIgdml0YWUg |
| - | dGluY2lkdW50IHVybmEuIE51bmMgZmVsaXMgcHVydXMsIHVsdHJpY2llcyBl |
| - | dCB2ZW5lbmF0aXMgYmliZW5kdW0sIGZyaW5naWxsYSBldSBsZWN0dXMuIFNl |
| - | ZCBjdXJzdXMsIHNlbSBhdCBibGFuZGl0IG1hdHRpcywgbGliZXJvIHF1YW0g |
| - | ZWdlc3RhcyB0b3J0b3IsIGVnZXQgY3Vyc3VzIGRvbG9yIHRlbGx1cyBpZCBu |
| - | dW5jLiBRdWlzcXVlIG1hdXJpcyBkaWFtLCB0aW5jaWR1bnQgaW4gY29tbW9k |
| - | byBzZWQsIGZldWdpYXQgZXUgbmliaC4gTnVsbGEgZXJhdCBudW5jLCBkYXBp |
| - | YnVzIHZlbCBlbGVpZmVuZCBldCwgZWdlc3RhcyBzZWQgcXVhbS4gVmVzdGli |
| - | dWx1bSBtb2xsaXMgZXJvcyBhdCBkb2xvciB2dWxwdXRhdGUgdmVsIHNvbGxp |
| - | Y2l0dWRpbiBlbmltIGNvbnZhbGxpcy4gRXRpYW0gdmVsaXQgbmlzaSwgcnV0 |
| - | cnVtIHZlbCBzYWdpdHRpcyBmYWNpbGlzaXMsIHByZXRpdW0gaWQgbG9yZW0u |
| - | IEN1bSBzb2NpaXMgbmF0b3F1ZSBwZW5hdGlidXMgZXQgbWFnbmlzIGRpcyBw |
| - | YXJ0dXJpZW50IG1vbnRlcywgbmFzY2V0dXIgcmlkaWN1bHVzIG11cy4gUGVs |
| - | bGVudGVzcXVlIG1hdXJpcyBuaXNsLCBjb25zZXF1YXQgc2VkIHRpbmNpZHVu |
| - | dCBuZWMsIGxhY2luaWEgaW4gb2Rpby4gSW4gaGFjIGhhYml0YXNzZSBwbGF0 |
| - | ZWEgZGljdHVtc3QuIE5hbSBzZW1wZXIgbGliZXJvIGFsaXF1YW0gdHVycGlz |
| - | IGdyYXZpZGEgdmVsIHZhcml1cyBlcmF0IHZ1bHB1dGF0ZS4gSW50ZWdlciBj |
| - | b25zZXF1YXQgaXBzdW0gdml0YWUgYXVndWUgcG9ydHRpdG9yIHVsbGFtY29y |
| - | cGVyLiBOYW0gdnVscHV0YXRlIGFsaXF1ZXQgYW50ZSBhdCBncmF2aWRhLiBW |
| - | ZXN0aWJ1bHVtIGx1Y3R1cyB1cm5hIGV0IGR1aSBoZW5kcmVyaXQgZXUgc3Vz |
| - | Y2lwaXQgdmVsaXQgdmFyaXVzLiBTZWQgb3JuYXJlIGVsZWlmZW5kIHNlbSwg |
| - | dml0YWUgcGhhcmV0cmEgZG9sb3Igc29kYWxlcyBlZ2VzdGFzLiBNYXVyaXMg |
| - | bG9ib3J0aXMgaGVuZHJlcml0IG9kaW8sIHZpdGFlIHBvcnR0aXRvciB1cm5h |
| - | IHJ1dHJ1bSBhdC4gVXQgYXQgbGVjdHVzIGVyYXQsIG5lYyBkaWN0dW0gZG9s |
| - | b3IuIFByYWVzZW50IGluIHNhcGllbiBpbnRlcmR1bSBuaWJoIGV1aXNtb2Qg |
| - | dmVzdGlidWx1bS4gVmVzdGlidWx1bSB0aW5jaWR1bnQgcHVsdmluYXIgYWNj |
| - | dW1zYW5cbiAgXHUwMDNjL3BcdTAwM2VcbiAgeyUgZW5kZWRpdGFibGVfbG9u |
| - | Z190ZXh0ICV9XG4gIFx1MDAzY3BcdTAwM2VcbiAgICBcdTAwM2NzdHJvbmdc |
| - | dTAwM2VEaXNjb3ZlcjogeyUgbGlua190byBvdXItbXVzaWMgJX1cdTAwM2Mv |
| - | c3Ryb25nXHUwMDNlXG4gICAgXHUwMDNjYnJcdTAwM2VcbiAgICBcdTAwM2Nz |
| - | dHJvbmdcdTAwM2VNb3JlIGFib3V0IHVzOiB7JSBsaW5rX3RvIGFib3V0LXVz |
| - | ICV9V2hvIGFyZSB3ZSA/eyUgZW5kbGlua190byAlfVx1MDAzYy9zdHJvbmdc |
| - | dTAwM2VcbiAgICBcdTAwM2Niclx1MDAzZVxuICAgIFx1MDAzY3N0cm9uZ1x1 |
| - | MDAzZVBsdXMgw6Agbm90cmUgc3VqZXQ6IHslIGxpbmtfdG8gYWJvdXQtdXMs |
| - | IGxvY2FsZTogZnIgJX1RdWkgc29tbWVzIG5vdXMgP3slIGVuZGxpbmtfdG8g |
| - | JX1cdTAwM2Mvc3Ryb25nXHUwMDNlXG4gICAgXHUwMDNjYnJcdTAwM2VcbiAg |
| - | ICB7JSBhc3NpZ24gc29uZyA9IGNvbnRlbnRzLnNvbmdzLmZpcnN0ICV9XG4g |
| - | ICAgXHUwMDNjc3Ryb25nXHUwMDNleyUgbGlua190byBzb25nICV9XHUwMDNj |
| - | L3N0cm9uZ1x1MDAzZVxuICAgIFx1MDAzY2JyXHUwMDNlXG4gICAgeyUgYXNz |
| - | aWduIGFub3RoZXJfc29uZyA9IGNvbnRlbnRzLnNvbmdzLmxhc3QgJX1cbiAg |
| - | ICBcdTAwM2NzdHJvbmdcdTAwM2V7JSBsaW5rX3RvIGFub3RoZXJfc29uZywg |
| - | d2l0aDogYS1zb25nLXRlbXBsYXRlICV9XHUwMDNjL3N0cm9uZ1x1MDAzZVxu |
| - | ICBcdTAwM2MvcFx1MDAzZVxuXHUwMDNjL2Rpdlx1MDAzZVxueyUgZW5kYmxv |
| - | Y2sgJX1cbiIsImVkaXRhYmxlX2VsZW1lbnRzIjpbXSwic2VvX3RpdGxlIjpu |
| - | dWxsLCJtZXRhX2tleXdvcmRzIjpudWxsLCJtZXRhX2Rlc2NyaXB0aW9uIjpu |
| - | dWxsfQ== |
| + | YXRlZF9pbiI6WyJlbiIsImZyIiwibmIiXSwiY2FjaGVfZW5hYmxlZCI6dHJ1 |
| + | ZSwic2x1ZyI6ImV2ZW50cyIsImZ1bGxwYXRoIjoiZXZlbnRzIiwibG9jYWxp |
| + | emVkX2Z1bGxwYXRocyI6eyJlbiI6ImV2ZW50cyIsImZyIjoiZnIvZXZlbnRz |
| + | IiwibmIiOiJuYi9ldmVudHMifSwicmVkaXJlY3QiOmZhbHNlLCJyZWRpcmVj |
| + | dF91cmwiOiIiLCJyZWRpcmVjdF90eXBlIjozMDEsInRlbXBsYXRpemVkIjpm |
| + | YWxzZSwidGVtcGxhdGl6ZWRfZnJvbV9wYXJlbnQiOmZhbHNlLCJjb250ZW50 |
| + | X3R5cGUiOm51bGwsImlzX2xheW91dCI6ZmFsc2UsImFsbG93X2xheW91dCI6 |
| + | ZmFsc2UsInRlbXBsYXRlIjoieyUgZXh0ZW5kcyBwYXJlbnQgJX1cbnslIGJs |
| + | b2NrIGNvbnRlbnQgJX1cblx1MDAzY3BcdTAwM2VUaGFuayB5b3Uge3sgbWVz |
| + | c2FnZS5uYW1lIH19ICFcdTAwM2MvcFx1MDAzZVxuXHUwMDNjZGl2IGNsYXNz |
| + | PSd1bml0IHNpemUyb2YzJyBpZD0nZXZlbnRzJ1x1MDAzZVxuICBcdTAwM2No |
| + | Mlx1MDAzZVVwY29taW5nIGV2ZW50c1x1MDAzYy9oMlx1MDAzZVxuICBcdTAw |
| + | M2N1bCBjbGFzcz0nbGlzdCdcdTAwM2VcbiAgICB7JSBmb3IgZXZlbnQgaW4g |
| + | Y29udGVudHMuZXZlbnRzICV9XG4gICAgXHUwMDNjbGlcdTAwM2VcbiAgICAg |
| + | IFx1MDAzY2VtXHUwMDNle3sgZXZlbnQuZGF0ZSB8IGxvY2FsaXplZF9kYXRl |
| + | OiAnJWEsICVCICVkLCAlWScgfX1cdTAwM2MvZW1cdTAwM2VcbiAgICAgIFx1 |
| + | MDAyNm5ic3A7LVx1MDAyNm5ic3A7XG4gICAgICB7eyBldmVudC5wbGFjZSB9 |
| + | fSwge3sgZXZlbnQuY2l0eSB9fSwge3sgZXZlbnQuc3RhdGUgfX1cbiAgICBc |
| + | dTAwM2MvbGlcdTAwM2VcbiAgICB7JSBlbmRmb3IgJX1cbiAgXHUwMDNjL3Vs |
| + | XHUwMDNlXG5cdTAwM2MvZGl2XHUwMDNlXG5cdTAwM2NkaXYgY2xhc3M9J3Vu |
| + | aXQgc2l6ZTFvZjMnIGlkPSdzaWRlYmFyJ1x1MDAzZVxuICB7JSBtb2RlbF9m |
| + | b3JtICdtZXNzYWdlcycsIGlkOiAnY29udGFjdGZvcm0nICV9XG4gIFx1MDAz |
| + | Y3BcdTAwM2VcbiAgICBcdTAwM2NsYWJlbCBmb3I9J25hbWUnXHUwMDNlTmFt |
| + | ZVx1MDAzYy9sYWJlbFx1MDAzZVxuICAgIFx1MDAzY2lucHV0IGlkPSduYW1l |
| + | JyBuYW1lPSdjb250ZW50W25hbWVdJyBwbGFjZWhvbGRlcj0nRmlyc3QgYW5k |
| + | IGxhc3QgbmFtZScgcmVxdWlyZWQ9J3JlcXVpcmVkJyB0YWJpbmRleD0nMScg |
| + | dHlwZT0ndGV4dCcgdmFsdWU9J3t7IG1lc3NhZ2UubmFtZSB9fSdcdTAwM2Vc |
| + | biAgICBcdTAwM2NzcGFuXHUwMDNle3sgbWVzc2FnZS5lcnJvcnMubmFtZSB9 |
| + | fVx1MDAzYy9zcGFuXHUwMDNlXG4gIFx1MDAzYy9wXHUwMDNlXG4gIFx1MDAz |
| + | Y3BcdTAwM2VcbiAgICBcdTAwM2NsYWJlbCBmb3I9J2VtYWlsJ1x1MDAzZUVt |
| + | YWlsXHUwMDNjL2xhYmVsXHUwMDNlXG4gICAgXHUwMDNjaW5wdXQgaWQ9J2Vt |
| + | YWlsJyBuYW1lPSdjb250ZW50W2VtYWlsXScgcGxhY2Vob2xkZXI9J2V4YW1w |
| + | bGVAZG9tYWluLmNvbScgcmVxdWlyZWQ9J3JlcXVpcmVkJyB0YWJpbmRleD0n |
| + | MicgdHlwZT0ndGV4dCcgdmFsdWU9J3t7IG1lc3NhZ2UuZW1haWwgfX0nXHUw |
| + | MDNlXG4gICAgXHUwMDNjc3Bhblx1MDAzZXt7IG1lc3NhZ2UuZXJyb3JzLmVt |
| + | YWlsIH19XHUwMDNjL3NwYW5cdTAwM2VcbiAgXHUwMDNjL3BcdTAwM2VcbiAg |
| + | XHUwMDNjcFx1MDAzZVxuICAgIFx1MDAzY2xhYmVsIGZvcj0nY29tbWVudCdc |
| + | dTAwM2VZb3VyIE1lc3NhZ2VcdTAwM2MvbGFiZWxcdTAwM2VcbiAgICBcdTAw |
| + | M2N0ZXh0YXJlYSBpZD0nY29tbWVudCcgbmFtZT0nY29udGVudFttZXNzYWdl |
| + | XScgcmVxdWlyZWQ9J3JlcXVpcmVkJyB0YWJpbmRleD0nMydcdTAwM2V7eyBt |
| + | ZXNzYWdlLm1lc3NhZ2UgfX1cdTAwM2MvdGV4dGFyZWFcdTAwM2VcbiAgICBc |
| + | dTAwM2NzcGFuXHUwMDNle3sgbWVzc2FnZS5lcnJvcnMubWVzc2FnZSB9fVx1 |
| + | MDAzYy9zcGFuXHUwMDNlXG4gIFx1MDAzYy9wXHUwMDNlXG4gIFx1MDAzY3Ag |
| + | Y2xhc3M9J2FjdGlvbidcdTAwM2VcbiAgICBcdTAwM2NpbnB1dCBuYW1lPSdz |
| + | dWJtaXQnIHRhYmluZGV4PSc0JyB0eXBlPSdzdWJtaXQnIHZhbHVlPSdTZW5k |
| + | IE1lc3NhZ2UnXHUwMDNlXG4gIFx1MDAzYy9wXHUwMDNlXG4gIHslIGVuZG1v |
| + | ZGVsX2Zvcm0gJX1cbiAgeyUgZWRpdGFibGVfbG9uZ190ZXh0ICdzaWRlYmFy |
| + | JyAlfVxuICBcdTAwM2NwXHUwMDNlXG4gICAgTG9yZW0gaXBzdW0gZG9sb3Ig |
| + | c2l0IGFtZXQsIGNvbnNlY3RldHVyIGFkaXBpc2NpbmcgZWxpdC4gQ3VyYWJp |
| + | dHVyIHZpdGFlIHRpbmNpZHVudCB1cm5hLiBOdW5jIGZlbGlzIHB1cnVzLCB1 |
| + | bHRyaWNpZXMgZXQgdmVuZW5hdGlzIGJpYmVuZHVtLCBmcmluZ2lsbGEgZXUg |
| + | bGVjdHVzLiBTZWQgY3Vyc3VzLCBzZW0gYXQgYmxhbmRpdCBtYXR0aXMsIGxp |
| + | YmVybyBxdWFtIGVnZXN0YXMgdG9ydG9yLCBlZ2V0IGN1cnN1cyBkb2xvciB0 |
| + | ZWxsdXMgaWQgbnVuYy4gUXVpc3F1ZSBtYXVyaXMgZGlhbSwgdGluY2lkdW50 |
| + | IGluIGNvbW1vZG8gc2VkLCBmZXVnaWF0IGV1IG5pYmguIE51bGxhIGVyYXQg |
| + | bnVuYywgZGFwaWJ1cyB2ZWwgZWxlaWZlbmQgZXQsIGVnZXN0YXMgc2VkIHF1 |
| + | YW0uIFZlc3RpYnVsdW0gbW9sbGlzIGVyb3MgYXQgZG9sb3IgdnVscHV0YXRl |
| + | IHZlbCBzb2xsaWNpdHVkaW4gZW5pbSBjb252YWxsaXMuIEV0aWFtIHZlbGl0 |
| + | IG5pc2ksIHJ1dHJ1bSB2ZWwgc2FnaXR0aXMgZmFjaWxpc2lzLCBwcmV0aXVt |
| + | IGlkIGxvcmVtLiBDdW0gc29jaWlzIG5hdG9xdWUgcGVuYXRpYnVzIGV0IG1h |
| + | Z25pcyBkaXMgcGFydHVyaWVudCBtb250ZXMsIG5hc2NldHVyIHJpZGljdWx1 |
| + | cyBtdXMuIFBlbGxlbnRlc3F1ZSBtYXVyaXMgbmlzbCwgY29uc2VxdWF0IHNl |
| + | ZCB0aW5jaWR1bnQgbmVjLCBsYWNpbmlhIGluIG9kaW8uIEluIGhhYyBoYWJp |
| + | dGFzc2UgcGxhdGVhIGRpY3R1bXN0LiBOYW0gc2VtcGVyIGxpYmVybyBhbGlx |
| + | dWFtIHR1cnBpcyBncmF2aWRhIHZlbCB2YXJpdXMgZXJhdCB2dWxwdXRhdGUu |
| + | IEludGVnZXIgY29uc2VxdWF0IGlwc3VtIHZpdGFlIGF1Z3VlIHBvcnR0aXRv |
| + | ciB1bGxhbWNvcnBlci4gTmFtIHZ1bHB1dGF0ZSBhbGlxdWV0IGFudGUgYXQg |
| + | Z3JhdmlkYS4gVmVzdGlidWx1bSBsdWN0dXMgdXJuYSBldCBkdWkgaGVuZHJl |
| + | cml0IGV1IHN1c2NpcGl0IHZlbGl0IHZhcml1cy4gU2VkIG9ybmFyZSBlbGVp |
| + | ZmVuZCBzZW0sIHZpdGFlIHBoYXJldHJhIGRvbG9yIHNvZGFsZXMgZWdlc3Rh |
| + | cy4gTWF1cmlzIGxvYm9ydGlzIGhlbmRyZXJpdCBvZGlvLCB2aXRhZSBwb3J0 |
| + | dGl0b3IgdXJuYSBydXRydW0gYXQuIFV0IGF0IGxlY3R1cyBlcmF0LCBuZWMg |
| + | ZGljdHVtIGRvbG9yLiBQcmFlc2VudCBpbiBzYXBpZW4gaW50ZXJkdW0gbmli |
| + | aCBldWlzbW9kIHZlc3RpYnVsdW0uIFZlc3RpYnVsdW0gdGluY2lkdW50IHB1 |
| + | bHZpbmFyIGFjY3Vtc2FuXG4gIFx1MDAzYy9wXHUwMDNlXG4gIHslIGVuZGVk |
| + | aXRhYmxlX2xvbmdfdGV4dCAlfVxuICBcdTAwM2NwXHUwMDNlXG4gICAgXHUw |
| + | MDNjc3Ryb25nXHUwMDNlRGlzY292ZXI6IHslIGxpbmtfdG8gb3VyLW11c2lj |
| + | ICV9XHUwMDNjL3N0cm9uZ1x1MDAzZVxuICAgIFx1MDAzY2JyXHUwMDNlXG4g |
| + | ICAgXHUwMDNjc3Ryb25nXHUwMDNlTW9yZSBhYm91dCB1czogeyUgbGlua190 |
| + | byBhYm91dC11cyAlfVdobyBhcmUgd2UgP3slIGVuZGxpbmtfdG8gJX1cdTAw |
| + | M2Mvc3Ryb25nXHUwMDNlXG4gICAgXHUwMDNjYnJcdTAwM2VcbiAgICBcdTAw |
| + | M2NzdHJvbmdcdTAwM2VQbHVzIMOgIG5vdHJlIHN1amV0OiB7JSBsaW5rX3Rv |
| + | IGFib3V0LXVzLCBsb2NhbGU6IGZyICV9UXVpIHNvbW1lcyBub3VzID97JSBl |
| + | bmRsaW5rX3RvICV9XHUwMDNjL3N0cm9uZ1x1MDAzZVxuICAgIFx1MDAzY2Jy |
| + | XHUwMDNlXG4gICAgeyUgYXNzaWduIHNvbmcgPSBjb250ZW50cy5zb25ncy5m |
| + | aXJzdCAlfVxuICAgIFx1MDAzY3N0cm9uZ1x1MDAzZXslIGxpbmtfdG8gc29u |
| + | ZyAlfVx1MDAzYy9zdHJvbmdcdTAwM2VcbiAgICBcdTAwM2Niclx1MDAzZVxu |
| + | ICAgIHslIGFzc2lnbiBhbm90aGVyX3NvbmcgPSBjb250ZW50cy5zb25ncy5s |
| + | YXN0ICV9XG4gICAgXHUwMDNjc3Ryb25nXHUwMDNleyUgbGlua190byBhbm90 |
| + | aGVyX3NvbmcsIHdpdGg6IGEtc29uZy10ZW1wbGF0ZSAlfVx1MDAzYy9zdHJv |
| + | bmdcdTAwM2VcbiAgXHUwMDNjL3BcdTAwM2Vcblx1MDAzYy9kaXZcdTAwM2Vc |
| + | bnslIGVuZGJsb2NrICV9XG4iLCJlZGl0YWJsZV9lbGVtZW50cyI6W10sInNl |
| + | b190aXRsZSI6bnVsbCwibWV0YV9rZXl3b3JkcyI6bnVsbCwibWV0YV9kZXNj |
| + | cmlwdGlvbiI6bnVsbH0= |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:17 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:59 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:17 GMT |
| + | - Thu, 09 Mar 2017 14:24:59 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -17832,47 +17832,42 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"746afc10b20ae47886217eca8076ffae" |
| + | - W/"d88000ae44c6f76b372da0a5ace777a5" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - bdba8137-f1d4-4977-af9f-0800c66ba126 |
| + | - ebba080f-e43d-4188-b328-0ff1836a494c |
| X-Runtime: | |
| - | - '0.049676' |
| + | - '0.050436' |
| Content-Length: | |
| - | - '1057' |
| + | - '695' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8987f6437d12223c30","created_at":"2016-06-17T08:02:17Z","updated_at":"2016-06-17T08:02:17Z","title":"A |
| - | sample contest","parent_id":"5763ae8287f6437d12223b91","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}' |
| + | string: '{"_id":"58c165bb87f64357b620342e","created_at":"2017-03-09T14:24:59Z","updated_at":"2017-03-09T14:24:59Z","title":"Tags","parent_id":"58c165b387f64357b620338f","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":false,"translated_in":["en","fr","nb"],"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: Fri, 17 Jun 2016 08:02:17 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:59 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:17 GMT |
| + | - Thu, 09 Mar 2017 14:24:59 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -17883,42 +17878,46 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"00ab184c6a8841055eadbc6a63a4e814" |
| + | - W/"b3d05c8e3108075407da65de490c602a" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - cabd4c9e-f040-410b-86ec-789c56803fe2 |
| + | - a0cad6b6-9e19-46d5-b750-f2d3bc2445e5 |
| X-Runtime: | |
| - | - '0.052675' |
| + | - '0.074385' |
| Content-Length: | |
| - | - '709' |
| + | - '963' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8987f6437d12223c31","created_at":"2016-06-17T08:02:18Z","updated_at":"2016-06-17T08:02:18Z","title":"Archives","parent_id":"5763ae8287f6437d12223b91","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}' |
| + | string: '{"_id":"58c165bb87f64357b620342f","created_at":"2017-03-09T14:24:59Z","updated_at":"2017-03-09T14:24:59Z","title":"All |
| + | the pages","parent_id":"58c165b387f64357b620338f","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":false,"translated_in":["en","fr","nb"],"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: Fri, 17 Jun 2016 08:02:18 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:59 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:18 GMT |
| + | - Thu, 09 Mar 2017 14:24:59 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -17929,51 +17928,47 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"b87edff0d06e94e0252c078a1cb14b25" |
| + | - W/"bac29754f0d8774c90d334174b254580" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 18c13670-5692-4026-82e5-f4cdb42e245a |
| + | - a83e0532-fbcd-4ab3-9119-1dc0fede2293 |
| X-Runtime: | |
| - | - '0.047046' |
| + | - '0.054782' |
| Content-Length: | |
| - | - '1364' |
| + | - '1067' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8a87f6437d12223c32","created_at":"2016-06-17T08:02:18Z","updated_at":"2016-06-17T08:02:18Z","title":"Various |
| - | uses of the with_scope tag","parent_id":"5763ae8287f6437d12223b91","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/, |
| - | state.ne: ''Illinois'', tags: ''awesome'', tags.nin: ''bad'', price.in: prices, |
| - | order_by: ''price.desc'' %}\nevents={{ contents.events.count }}.\n{% endwith_scope |
| - | %}\n{% with_scope tags.in: ''awesome'', order_by: ''price.desc'' %}\nfirst |
| - | event={{ contents.events.first.place }}.\n{% endwith_scope %}\n{% assign featured |
| - | = 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}' |
| + | string: '{"_id":"58c165bb87f64357b6203430","created_at":"2017-03-09T14:24:59Z","updated_at":"2017-03-09T14:24:59Z","title":"A |
| + | sample contest","parent_id":"58c165b387f64357b620338f","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":true,"translated_in":["en","fr","nb"],"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: Fri, 17 Jun 2016 08:02:18 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:24:59 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:18 GMT |
| + | - Thu, 09 Mar 2017 14:24:59 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -17984,44 +17979,51 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"df1d43e5cc5f1eeae441ce9acd855b03" |
| + | - W/"728670eaf1802084e3f500a9df841df3" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 6eb21310-4848-42c3-9f31-761cd2c16df5 |
| + | - b1b59b78-22d5-4266-b5b0-2b2463b0ba8b |
| X-Runtime: | |
| - | - '0.054796' |
| + | - '0.068709' |
| Content-Length: | |
| - | - '837' |
| + | - '1374' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8a87f6437d12223c33","created_at":"2016-06-17T08:02:18Z","updated_at":"2016-06-17T08:02:18Z","title":"Grunge |
| - | leaders","parent_id":"5763ae8287f6437d12223b91","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}' |
| + | string: '{"_id":"58c165bc87f64357b6203431","created_at":"2017-03-09T14:25:00Z","updated_at":"2017-03-09T14:25:00Z","title":"Various |
| + | uses of the with_scope tag","parent_id":"58c165b387f64357b620338f","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":true,"translated_in":["en","fr","nb"],"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/, |
| + | state.ne: ''Illinois'', tags: ''awesome'', tags.nin: ''bad'', price.in: prices, |
| + | order_by: ''price.desc'' %}\nevents={{ contents.events.count }}.\n{% endwith_scope |
| + | %}\n{% with_scope tags.in: ''awesome'', order_by: ''price.desc'' %}\nfirst |
| + | event={{ contents.events.first.place }}.\n{% endwith_scope %}\n{% assign featured |
| + | = 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: Fri, 17 Jun 2016 08:02:18 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:25:00 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:18 GMT |
| + | - Thu, 09 Mar 2017 14:25:00 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -18032,46 +18034,44 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"95a4e645018a3bfc4b4023c53afd9c45" |
| + | - W/"c382afd9e2c2e0898674ed71f5ac70ef" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - c744e80a-9e75-4b57-a0f9-88f9ff661a25 |
| + | - 85c5c904-91ad-47da-89eb-5dc4a1de0bce |
| X-Runtime: | |
| - | - '0.049495' |
| + | - '0.054674' |
| Content-Length: | |
| - | - '953' |
| + | - '847' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8a87f6437d12223c34","created_at":"2016-06-17T08:02:18Z","updated_at":"2016-06-17T08:02:18Z","title":"All |
| - | the pages","parent_id":"5763ae8287f6437d12223b91","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}' |
| + | string: '{"_id":"58c165bc87f64357b6203432","created_at":"2017-03-09T14:25:00Z","updated_at":"2017-03-09T14:25:00Z","title":"Grunge |
| + | leaders","parent_id":"58c165b387f64357b620338f","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":true,"translated_in":["en","fr","nb"],"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: Fri, 17 Jun 2016 08:02:18 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:25:00 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:18 GMT |
| + | - Thu, 09 Mar 2017 14:25:00 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -18082,42 +18082,44 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"6965292de04d831674fdbcc0ae0bdbd3" |
| + | - W/"a5f3b13419234ad8be3cb117144b99c0" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 4d5d1028-a228-4486-ab84-52a6da7cfd8e |
| + | - f9965417-4fda-41e0-bb9b-5035148fc139 |
| X-Runtime: | |
| - | - '0.048052' |
| + | - '0.079882' |
| Content-Length: | |
| - | - '703' |
| + | - '921' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8a87f6437d12223c35","created_at":"2016-06-17T08:02:18Z","updated_at":"2016-06-17T08:02:18Z","title":"Layouts","parent_id":"5763ae8287f6437d12223b91","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}' |
| + | string: '{"_id":"58c165bc87f64357b6203433","created_at":"2017-03-09T14:25:00Z","updated_at":"2017-03-09T14:25:00Z","title":"Unlisted |
| + | pages","parent_id":"58c165b387f64357b620338f","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":true,"translated_in":["en","fr","nb"],"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: Fri, 17 Jun 2016 08:02:18 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:25:00 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:18 GMT |
| + | - Thu, 09 Mar 2017 14:25:00 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -18128,42 +18130,42 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"daa7acf6a3e62b0d3b7541287ae07ddc" |
| + | - W/"7fdd77d99d0ccac54cd673542aae19f7" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 9561cd86-f370-40a9-8e76-f044263a1ee8 |
| + | - 649b79c8-9b77-4db8-8c22-fd2c64052df5 |
| X-Runtime: | |
| - | - '0.054344' |
| + | - '0.052210' |
| Content-Length: | |
| - | - '691' |
| + | - '719' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8a87f6437d12223c36","created_at":"2016-06-17T08:02:18Z","updated_at":"2016-06-17T08:02:18Z","title":"Songs","parent_id":"5763ae8287f6437d12223b91","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":"58c165bc87f64357b6203434","created_at":"2017-03-09T14:25:00Z","updated_at":"2017-03-09T14:25:00Z","title":"Archives","parent_id":"58c165b387f64357b620338f","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":false,"translated_in":["en","fr","nb"],"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: Fri, 17 Jun 2016 08:02:18 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:25:00 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:18 GMT |
| + | - Thu, 09 Mar 2017 14:25:00 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -18174,44 +18176,42 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"614b416d35511657352daf0dd443a795" |
| + | - W/"3862590e0a32596fc145fb61d615c8e1" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 5d8627ec-462a-49f2-91d8-654b01379fbb |
| + | - ccd6a8c8-bd5b-4bd1-b867-68c07f8d89df |
| X-Runtime: | |
| - | - '0.052578' |
| + | - '0.068134' |
| Content-Length: | |
| - | - '911' |
| + | - '713' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8a87f6437d12223c37","created_at":"2016-06-17T08:02:18Z","updated_at":"2016-06-17T08:02:18Z","title":"Unlisted |
| - | pages","parent_id":"5763ae8287f6437d12223b91","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}' |
| + | string: '{"_id":"58c165bc87f64357b6203435","created_at":"2017-03-09T14:25:00Z","updated_at":"2017-03-09T14:25:00Z","title":"Layouts","parent_id":"58c165b387f64357b620338f","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":false,"translated_in":["en","fr","nb"],"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: Fri, 17 Jun 2016 08:02:18 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:25:00 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:18 GMT |
| + | - Thu, 09 Mar 2017 14:25:00 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -18222,42 +18222,42 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"04ead656eca652a0c8df34dc56447123" |
| + | - W/"72a41c93a760fc531e37ff94c6de4ffe" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 5fdbeb61-465d-40ae-aabe-7b33740b70e8 |
| + | - e80e2e42-7388-46d6-98a7-06077bac4448 |
| X-Runtime: | |
| - | - '0.049118' |
| + | - '0.058457' |
| Content-Length: | |
| - | - '685' |
| + | - '701' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8a87f6437d12223c38","created_at":"2016-06-17T08:02:18Z","updated_at":"2016-06-17T08:02:18Z","title":"Tags","parent_id":"5763ae8287f6437d12223b91","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":"58c165bc87f64357b6203436","created_at":"2017-03-09T14:25:00Z","updated_at":"2017-03-09T14:25:00Z","title":"Songs","parent_id":"58c165b387f64357b620338f","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":false,"translated_in":["en","fr","nb"],"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: Fri, 17 Jun 2016 08:02:18 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:25:00 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:18 GMT |
| + | - Thu, 09 Mar 2017 14:25:00 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -18268,43 +18268,43 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"53278774e95a483e5c875c31d58bb246" |
| + | - W/"aa78adc18db8232e7b38e0d4b8e369d1" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - b4b41f89-81ba-4a8b-b9f1-a135f272b75c |
| + | - d172ceb3-4bf9-4bfc-89c4-19aaa9d145f1 |
| X-Runtime: | |
| - | - '0.077166' |
| + | - '0.051207' |
| Content-Length: | |
| - | - '747' |
| + | - '757' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8a87f6437d12223c39","created_at":"2016-06-17T08:02:18Z","updated_at":"2016-06-17T08:02:18Z","title":"John |
| - | doe","parent_id":"5763ae8987f6437d12223c29","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":"58c165bc87f64357b6203437","created_at":"2017-03-09T14:25:00Z","updated_at":"2017-03-09T14:25:00Z","title":"John |
| + | doe","parent_id":"58c165bb87f64357b6203427","position":1,"handle":null,"depth":2,"response_type":"text/html","listed":true,"published":true,"translated_in":["en","fr","nb"],"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: Fri, 17 Jun 2016 08:02:18 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:25:00 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/pages/5763ae8a87f6437d12223c39.json |
| + | uri: http://localhost:3000/locomotive/api/v3/pages/58c165bc87f64357b6203437.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:18 GMT |
| + | - Thu, 09 Mar 2017 14:25:00 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - fr | |
| Content-Type: | |
| @@ | @@ -18317,43 +18317,43 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"6c3e722ab0809e10c66a3f98ea68e174" |
| + | - W/"e45e8868fe9100c6e78cd30ed11a165a" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 2d3bb12d-5336-41ba-b361-274ee7b57992 |
| + | - f2323eee-f774-4710-97a5-8ec6e2723aa4 |
| X-Runtime: | |
| - | - '0.043906' |
| + | - '0.057237' |
| Content-Length: | |
| - | - '777' |
| + | - '782' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8a87f6437d12223c39","created_at":"2016-06-17T08:02:18Z","updated_at":"2016-06-17T08:02:18Z","title":"Jean |
| - | Personne","parent_id":"5763ae8987f6437d12223c29","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":"{% |
| + | string: '{"_id":"58c165bc87f64357b6203437","created_at":"2017-03-09T14:25:00Z","updated_at":"2017-03-09T14:25:00Z","title":"Jean |
| + | Personne","parent_id":"58c165bb87f64357b6203427","position":1,"handle":null,"depth":2,"response_type":"text/html","listed":true,"published":true,"translated_in":["en","fr","nb"],"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: Fri, 17 Jun 2016 08:02:18 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:25:00 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:18 GMT |
| + | - Thu, 09 Mar 2017 14:25:00 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -18364,43 +18364,43 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"9aa6bcbc4de73780ceea36000c98e457" |
| + | - W/"693ad5c83ec8f67730215b97d87d7791" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - ec897f8a-f30a-4d43-a3a8-36e4a57d2fc4 |
| + | - 88b498a6-bfb8-4508-b1d5-2ec41dfdb7b6 |
| X-Runtime: | |
| - | - '0.048312' |
| + | - '0.075493' |
| Content-Length: | |
| - | - '748' |
| + | - '758' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8a87f6437d12223c3a","created_at":"2016-06-17T08:02:18Z","updated_at":"2016-06-17T08:02:18Z","title":"Jane |
| - | doe","parent_id":"5763ae8987f6437d12223c29","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":"58c165bc87f64357b6203438","created_at":"2017-03-09T14:25:00Z","updated_at":"2017-03-09T14:25:00Z","title":"Jane |
| + | doe","parent_id":"58c165bb87f64357b6203427","position":2,"handle":null,"depth":2,"response_type":"text/html","listed":false,"published":true,"translated_in":["en","fr","nb"],"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: Fri, 17 Jun 2016 08:02:18 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:25:00 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:18 GMT |
| + | - Thu, 09 Mar 2017 14:25:00 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -18411,46 +18411,43 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"a853bc4d04cbc202906b568ead7df14c" |
| + | - W/"28beb50bcdf99a8f43209dad9007e8e8" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 400871a7-73ca-4df1-addd-befade892779 |
| + | - a76b1023-01bc-4635-bbeb-f506e56ffcc9 |
| X-Runtime: | |
| - | - '0.057571' |
| + | - '0.061919' |
| Content-Length: | |
| - | - '1109' |
| + | - '796' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8a87f6437d12223c3b","created_at":"2016-06-17T08:02:18Z","updated_at":"2016-06-17T08:02:18Z","title":"My |
| - | simple layout","parent_id":"5763ae8a87f6437d12223c35","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}' |
| + | string: '{"_id":"58c165bc87f64357b6203439","created_at":"2017-03-09T14:25:00Z","updated_at":"2017-03-09T14:25:00Z","title":"Page |
| + | to test the nav tag with a high depth","parent_id":"58c165bb87f64357b620342e","position":99,"handle":null,"depth":2,"response_type":"text/html","listed":false,"published":false,"translated_in":["en","fr","nb"],"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: Fri, 17 Jun 2016 08:02:18 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:25:00 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:18 GMT |
| + | - Thu, 09 Mar 2017 14:25:00 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -18461,43 +18458,46 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"ca29fe047e77df261bec18e6ae680b21" |
| + | - W/"9e03978833b7181714a4ad144b949bf0" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - f601da4c-2ab2-4aa0-9084-a36f1a7a294d |
| + | - 277c04c8-8ed2-4a60-a2d7-883b9c8d72a9 |
| X-Runtime: | |
| - | - '0.077414' |
| + | - '0.058625' |
| Content-Length: | |
| - | - '786' |
| + | - '1119' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8a87f6437d12223c3c","created_at":"2016-06-17T08:02:18Z","updated_at":"2016-06-17T08:02:18Z","title":"Page |
| - | to test the nav tag with a high depth","parent_id":"5763ae8a87f6437d12223c38","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}' |
| + | string: '{"_id":"58c165bc87f64357b620343a","created_at":"2017-03-09T14:25:00Z","updated_at":"2017-03-09T14:25:00Z","title":"My |
| + | simple layout","parent_id":"58c165bc87f64357b6203435","position":99,"handle":null,"depth":2,"response_type":"text/html","listed":false,"published":false,"translated_in":["en","fr","nb"],"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: Fri, 17 Jun 2016 08:02:18 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:25:00 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:18 GMT |
| + | - Thu, 09 Mar 2017 14:25:00 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -18508,43 +18508,44 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"e1c45766b0313992a05424ac7a3c624b" |
| + | - W/"7c8ede2f67c814adf3a361202dc36398" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - d72e44ea-1ae3-4f73-9c9f-7dc89cf15c1b |
| + | - ccce2894-5ac6-4fe4-81ab-a58e26f4a173 |
| X-Runtime: | |
| - | - '0.053653' |
| + | - '0.057290' |
| Content-Length: | |
| - | - '716' |
| + | - '837' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8a87f6437d12223c3d","created_at":"2016-06-17T08:02:18Z","updated_at":"2016-06-17T08:02:18Z","title":"Page |
| - | to test the nav tag","parent_id":"5763ae8a87f6437d12223c38","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}' |
| + | string: '{"_id":"58c165bc87f64357b620343b","created_at":"2017-03-09T14:25:00Z","updated_at":"2017-03-09T14:25:00Z","title":"News |
| + | archive","parent_id":"58c165bc87f64357b6203434","position":99,"handle":null,"depth":2,"response_type":"text/html","listed":false,"published":true,"translated_in":["en","fr","nb"],"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: Fri, 17 Jun 2016 08:02:18 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:25:00 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:18 GMT |
| + | - Thu, 09 Mar 2017 14:25:00 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -18555,19 +18556,19 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"d6ef74af1ee9300051fd2655eb5cce6c" |
| + | - W/"e9dc1f5567b3eb4cbc21d91a1898f73a" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - e11231ba-0116-4b94-b621-e29348756f06 |
| + | - 13f8ac0b-25e6-458f-be87-fdaebbc4671b |
| X-Runtime: | |
| - | - '0.079793' |
| + | - '0.093690' |
| Content-Length: | |
| - | - '1268' |
| + | - '1278' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8a87f6437d12223c3e","created_at":"2016-06-17T08:02:18Z","updated_at":"2016-06-17T08:02:18Z","title":"A |
| - | song template","parent_id":"5763ae8a87f6437d12223c36","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":"58c165bc87f64357b620343c","created_at":"2017-03-09T14:25:00Z","updated_at":"2017-03-09T14:25:00Z","title":"A |
| + | song template","parent_id":"58c165bc87f64357b6203436","position":99,"handle":"a-song-template","depth":2,"response_type":"text/html","listed":false,"published":true,"translated_in":["en","fr","nb"],"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=''{{ | |
| @@ | @@ -18575,28 +18576,28 @@ 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: Fri, 17 Jun 2016 08:02:18 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:25:00 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/pages/5763ae8a87f6437d12223c3e.json |
| + | uri: http://localhost:3000/locomotive/api/v3/pages/58c165bc87f64357b620343c.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:18 GMT |
| + | - Thu, 09 Mar 2017 14:25:00 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - fr | |
| Content-Type: | |
| @@ | @@ -18609,19 +18610,19 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"dcf9b29c13c82d2cb8ebf5bd2d9fa621" |
| + | - W/"918d4adfb997c5dacead94803950a7d8" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - c9846f5b-ac37-4c6d-ae47-fb17c4ce0a47 |
| + | - 779e6c9d-c36c-4c6e-9990-6e8d00a51d32 |
| X-Runtime: | |
| - | - '0.069212' |
| + | - '0.084815' |
| Content-Length: | |
| - | - '1288' |
| + | - '1293' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8a87f6437d12223c3e","created_at":"2016-06-17T08:02:18Z","updated_at":"2016-06-17T08:02:19Z","title":"Le |
| - | template d''une chanson","parent_id":"5763ae8a87f6437d12223c36","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":"{% |
| + | string: '{"_id":"58c165bc87f64357b620343c","created_at":"2017-03-09T14:25:00Z","updated_at":"2017-03-09T14:25:01Z","title":"Le |
| + | template d''une chanson","parent_id":"58c165bc87f64357b6203436","position":99,"handle":"a-song-template","depth":2,"response_type":"text/html","listed":false,"published":true,"translated_in":["en","fr","nb"],"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 | |
| @@ | @@ -18629,28 +18630,28 @@ 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: Fri, 17 Jun 2016 08:02:19 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:25:01 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/pages/5763ae8a87f6437d12223c3e.json |
| + | uri: http://localhost:3000/locomotive/api/v3/pages/58c165bc87f64357b620343c.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:19 GMT |
| + | - Thu, 09 Mar 2017 14:25:01 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| X-Locomotive-Locale: | |
| - nb | |
| Content-Type: | |
| @@ | @@ -18663,42 +18664,42 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"fc4a27f7964d525fcad48a44600a207a" |
| + | - W/"c6ee4675cc5b12906877a7d130ebc4e7" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - eb777d43-57e8-4612-ac44-c13236e3a791 |
| + | - 2b202011-1c84-4f76-be2e-66b7ece3886b |
| X-Runtime: | |
| - | - '0.080732' |
| + | - '0.080001' |
| Content-Length: | |
| - | - '805' |
| + | - '810' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8a87f6437d12223c3e","created_at":"2016-06-17T08:02:18Z","updated_at":"2016-06-17T08:02:19Z","title":"A |
| - | song template","parent_id":"5763ae8a87f6437d12223c36","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}' |
| + | string: '{"_id":"58c165bc87f64357b620343c","created_at":"2017-03-09T14:25:00Z","updated_at":"2017-03-09T14:25:01Z","title":"A |
| + | song template","parent_id":"58c165bc87f64357b6203436","position":99,"handle":"a-song-template","depth":2,"response_type":"text/html","listed":false,"published":true,"translated_in":["en","fr","nb"],"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: Fri, 17 Jun 2016 08:02:19 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:25:01 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:19 GMT |
| + | - Thu, 09 Mar 2017 14:25:01 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -18709,44 +18710,43 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"39f2d10a8f824130308c3f8f136028f9" |
| + | - W/"0e6d60f72ef6f3195c89f9accc1fa0fd" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - f3747732-8adb-4309-9897-b4c9e58b4e56 |
| + | - ad8e75aa-c9e0-4038-8a9d-bf0250b5aa04 |
| X-Runtime: | |
| - | - '0.047801' |
| + | - '0.057609' |
| Content-Length: | |
| - | - '827' |
| + | - '726' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8b87f6437d12223c3f","created_at":"2016-06-17T08:02:19Z","updated_at":"2016-06-17T08:02:19Z","title":"News |
| - | archive","parent_id":"5763ae8987f6437d12223c31","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}' |
| + | string: '{"_id":"58c165bd87f64357b620343d","created_at":"2017-03-09T14:25:01Z","updated_at":"2017-03-09T14:25:01Z","title":"Page |
| + | to test the nav tag","parent_id":"58c165bb87f64357b620342e","position":99,"handle":null,"depth":2,"response_type":"text/html","listed":false,"published":false,"translated_in":["en","fr","nb"],"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: Fri, 17 Jun 2016 08:02:19 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:25:01 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:19 GMT |
| + | - Thu, 09 Mar 2017 14:25:01 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -18757,18 +18757,18 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"20ff11ca389ec2445daa1250b2f989eb" |
| + | - W/"b76484c3a2a171877c2d8e059ecaf3d8" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 05048562-94d7-476e-b7d7-43b3111b981e |
| + | - cbb34861-d7f6-4fd2-837c-54b61df5b418 |
| X-Runtime: | |
| - | - '0.079888' |
| + | - '0.090839' |
| Content-Length: | |
| - | - '1249' |
| + | - '1259' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8b87f6437d12223c40","created_at":"2016-06-17T08:02:19Z","updated_at":"2016-06-17T08:02:19Z","title":"Band","parent_id":"5763ae8a87f6437d12223c3e","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":"58c165bd87f64357b620343e","created_at":"2017-03-09T14:25:01Z","updated_at":"2017-03-09T14:25:01Z","title":"Band","parent_id":"58c165bc87f64357b620343c","position":99,"handle":null,"depth":3,"response_type":"text/html","listed":false,"published":true,"translated_in":["en","fr","nb"],"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=''{{ | |
| @@ | @@ -18776,28 +18776,28 @@ 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: Fri, 17 Jun 2016 08:02:19 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:25:01 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/snippets/song.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:19 GMT |
| + | - Thu, 09 Mar 2017 14:25:01 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -18808,21 +18808,21 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"d797db72c84c624734f115533ef422ce" |
| + | - W/"6ba4a6d1cb6a6140a909342376346feb" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 249ffa1e-7fe7-48d7-9686-3a8548b8753e |
| + | - 29d32874-b0b1-4bba-9fe1-8433666d0d8d |
| X-Runtime: | |
| - | - '0.040048' |
| + | - '0.043810' |
| Content-Length: | |
| - '744' | |
| body: | |
| encoding: ASCII-8BIT | |
| string: !binary |- | |
| - | eyJfaWQiOiI1NzYzYWU4Yjg3ZjY0MzdkMTIyMjNjNDEiLCJjcmVhdGVkX2F0 |
| - | IjoiMjAxNi0wNi0xN1QwODowMjoxOVoiLCJ1cGRhdGVkX2F0IjoiMjAxNi0w |
| - | Ni0xN1QwODowMjoxOVoiLCJuYW1lIjoiU29uZyIsInNsdWciOiJzb25nIiwi |
| + | eyJfaWQiOiI1OGMxNjViZDg3ZjY0MzU3YjYyMDM0M2YiLCJjcmVhdGVkX2F0 |
| + | IjoiMjAxNy0wMy0wOVQxNDoyNTowMVoiLCJ1cGRhdGVkX2F0IjoiMjAxNy0w |
| + | My0wOVQxNDoyNTowMVoiLCJuYW1lIjoiU29uZyIsInNsdWciOiJzb25nIiwi |
| dGVtcGxhdGUiOiJcdTAwM2NsaVx1MDAzZVxuICBcdTAwM2NoM1x1MDAzZVx1 | |
| MDAzY2EgaHJlZj1cInslIHBhdGhfdG8gc29uZywgd2l0aDogYS1zb25nLXRl | |
| bXBsYXRlICV9XCJcdTAwM2V7eyBzb25nLnRpdGxlIH19XHUwMDNjL2FcdTAw | |
| @@ | @@ -18838,28 +18838,28 @@ http_interactions: |
| IFx1MDAzY2RpdiBjbGFzcz1cImNsZWFyXCJcdTAwM2VcdTAwM2MvZGl2XHUw | |
| MDNlXG5cdTAwM2MvbGlcdTAwM2VcbiJ9 | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:19 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:25:01 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/snippets/a_complicated-one.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:19 GMT |
| + | - Thu, 09 Mar 2017 14:25:01 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -18870,43 +18870,43 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"6d4c942805a35d8d7d522987440254d9" |
| + | - W/"06eb19d9c2b96bb44e3632592cde67ea" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 41bffcc2-e92a-4737-ba93-de6ea0a36df8 |
| + | - 2bff5cd7-78c9-4af5-80f2-0fad4e4a607e |
| X-Runtime: | |
| - | - '0.040981' |
| + | - '0.045115' |
| Content-Length: | |
| - '233' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8b87f6437d12223c42","created_at":"2016-06-17T08:02:19Z","updated_at":"2016-06-17T08:02:19Z","name":"A |
| + | string: '{"_id":"58c165bd87f64357b6203440","created_at":"2017-03-09T14:25:01Z","updated_at":"2017-03-09T14:25:01Z","name":"A |
| complicated-one","slug":"a_complicated-one","template":"\u003cp\u003eA complicated | |
| one name indeed.\u003c/p\u003e\n"}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:19 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:25:01 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/snippets/footer.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:19 GMT |
| + | - Thu, 09 Mar 2017 14:25:01 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -18917,46 +18917,46 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"635fe2260c8311ff2961de85c8dc5718" |
| + | - W/"8caf543a881974f688279d39278379b4" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 1f4e7812-da34-4455-ad64-30e22952d247 |
| + | - f10344ac-9974-455a-b004-2f38b24c4259 |
| X-Runtime: | |
| - | - '0.038682' |
| + | - '0.041067' |
| Content-Length: | |
| - '726' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8b87f6437d12223c43","created_at":"2016-06-17T08:02:19Z","updated_at":"2016-06-17T08:02:19Z","name":"Footer","slug":"footer","template":"\u003cp\u003e{% |
| + | string: '{"_id":"58c165bd87f64357b6203441","created_at":"2017-03-09T14:25:01Z","updated_at":"2017-03-09T14:25:01Z","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: Fri, 17 Jun 2016 08:02:19 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:25:01 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/snippets/header.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&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=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:19 GMT |
| + | - Thu, 09 Mar 2017 14:25:01 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -18967,42 +18967,42 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"613531b6cdefefea803ec0ed14936853" |
| + | - W/"3425c38bfd91e31185d0f3f14df4b397" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 2f5fb937-714a-47c5-a0ea-22bdf9273d9b |
| + | - 43db8f50-b258-44e2-8785-2b65727dcfac |
| X-Runtime: | |
| - | - '0.039963' |
| + | - '0.061016' |
| Content-Length: | |
| - '198' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8b87f6437d12223c44","created_at":"2016-06-17T08:02:19Z","updated_at":"2016-06-17T08:02:19Z","name":"Header","slug":"header","template":"\u003ch1\u003e{{ |
| + | string: '{"_id":"58c165bd87f64357b6203442","created_at":"2017-03-09T14:25:01Z","updated_at":"2017-03-09T14:25:01Z","name":"Header","slug":"header","template":"\u003ch1\u003e{{ |
| site.name }}\u003c/h1\u003e\n"}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:19 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:25:01 GMT |
| - request: | |
| method: get | |
| - | uri: http://localhost:3000/locomotive/api/v3/theme_assets.json?auth_token=HyqKxyBLmEH9x_GzYnWY |
| + | uri: http://localhost:3000/locomotive/api/v3/theme_assets.json?auth_token=2A9iTQyoACHbA4eAVLCH |
| body: | |
| encoding: UTF-8 | |
| string: '' | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:19 GMT |
| + | - Thu, 09 Mar 2017 14:25:01 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -19015,16 +19015,16 @@ http_interactions: |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 88840225-9f22-40d4-bf9c-6f226f880df0 |
| + | - 694b8d4e-c66e-4f4e-9578-161652592c5d |
| X-Runtime: | |
| - | - '0.051641' |
| + | - '0.028938' |
| Content-Length: | |
| - '2' | |
| body: | |
| encoding: UTF-8 | |
| string: "[]" | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:19 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:25:01 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -19897,23 +19897,23 @@ http_interactions: |
| ZW1lX2Fzc2V0W2NoZWNrc3VtXSINCg0KNjA4MDQ0MWZkZTUwYzQ4MzljMjNj | |
| NzliOTM3ZjAxOTQNCi0tLS0tLS0tLS0tLS1SdWJ5TXVsdGlwYXJ0UG9zdA0K | |
| Q29udGVudC1EaXNwb3NpdGlvbjogZm9ybS1kYXRhOyBuYW1lPSJhdXRoX3Rv | |
| - | a2VuIg0KDQpIeXFLeHlCTG1FSDl4X0d6WW5XWQ0KLS0tLS0tLS0tLS0tLVJ1 |
| + | a2VuIg0KDQoyQTlpVFF5b0FDSGJBNGVBVkxDSA0KLS0tLS0tLS0tLS0tLVJ1 |
| YnlNdWx0aXBhcnRQb3N0LS0NCg0K | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:19 GMT |
| + | - Thu, 09 Mar 2017 14:25:01 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| @@ | @@ -19926,21 +19926,21 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"f8740cb5f032efd3e9481ea068fd273c" |
| + | - W/"4e2134a9eb3e2e843ed25c82cddd0ac0" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - e0ee96eb-6e7c-4d78-a413-bcfa4b5eaa4e |
| + | - 8be9b215-c2c0-4148-b604-2e82ea6d880f |
| X-Runtime: | |
| - | - '0.056645' |
| + | - '0.053774' |
| Content-Length: | |
| - '377' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8b87f6437d12223c45","created_at":"2016-06-17T08:02:19Z","updated_at":"2016-06-17T08:02:19Z","content_type":"font","local_path":"fonts/chunkfive-webfont.eot","folder":"fonts","checksum":"6080441fde50c4839c23c79b937f0194","filename":"chunkfive-webfont.eot","url":"/sites/5763ae8287f6437d12223b8f/theme/fonts/chunkfive-webfont.eot","size":"37.5 |
| + | string: '{"_id":"58c165bd87f64357b6203443","created_at":"2017-03-09T14:25:01Z","updated_at":"2017-03-09T14:25:01Z","content_type":"font","local_path":"fonts/chunkfive-webfont.eot","folder":"fonts","checksum":"6080441fde50c4839c23c79b937f0194","filename":"chunkfive-webfont.eot","url":"/sites/58c165b387f64357b620338d/theme/fonts/chunkfive-webfont.eot","size":"37.5 |
| KB","raw_size":38434}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:19 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:25:01 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -20588,22 +20588,22 @@ 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\nHyqKxyBLmEH9x_GzYnWY\r\n-------------RubyMultipartPost--\r\n\r\n" |
| + | form-data; name=\"auth_token\"\r\n\r\n2A9iTQyoACHbA4eAVLCH\r\n-------------RubyMultipartPost--\r\n\r\n" |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:19 GMT |
| + | - Thu, 09 Mar 2017 14:25:01 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| @@ | @@ -20616,21 +20616,21 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"7eaad469a9e30fb3f0a8f49133fb1665" |
| + | - W/"c3b7d49698d68f4dbc30d12a3c264e16" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 97c4f7b6-4a09-4bf4-bb99-836ed4428895 |
| + | - a3a389bc-5d1d-47b8-82c8-e9a9af4f7dde |
| X-Runtime: | |
| - | - '0.057497' |
| + | - '0.042197' |
| Content-Length: | |
| - '377' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8b87f6437d12223c46","created_at":"2016-06-17T08:02:19Z","updated_at":"2016-06-17T08:02:19Z","content_type":"font","local_path":"fonts/chunkfive-webfont.svg","folder":"fonts","checksum":"57d0f66913a8c0e172ae3fe78ce36e43","filename":"chunkfive-webfont.svg","url":"/sites/5763ae8287f6437d12223b8f/theme/fonts/chunkfive-webfont.svg","size":"49.4 |
| + | string: '{"_id":"58c165bd87f64357b6203444","created_at":"2017-03-09T14:25:01Z","updated_at":"2017-03-09T14:25:01Z","content_type":"font","local_path":"fonts/chunkfive-webfont.svg","folder":"fonts","checksum":"57d0f66913a8c0e172ae3fe78ce36e43","filename":"chunkfive-webfont.svg","url":"/sites/58c165b387f64357b620338d/theme/fonts/chunkfive-webfont.svg","size":"49.4 |
| KB","raw_size":50602}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:19 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:25:01 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -21497,23 +21497,23 @@ http_interactions: |
| dFtjaGVja3N1bV0iDQoNCjQzOTYzMzQ0NGY5ZDMyYTMwYTQ0NDlkYTk2Nzg1 | |
| M2QyDQotLS0tLS0tLS0tLS0tUnVieU11bHRpcGFydFBvc3QNCkNvbnRlbnQt | |
| RGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0iYXV0aF90b2tlbiINCg0K | |
| - | SHlxS3h5QkxtRUg5eF9HelluV1kNCi0tLS0tLS0tLS0tLS1SdWJ5TXVsdGlw |
| + | MkE5aVRReW9BQ0hiQTRlQVZMQ0gNCi0tLS0tLS0tLS0tLS1SdWJ5TXVsdGlw |
| YXJ0UG9zdC0tDQoNCg== | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:19 GMT |
| + | - Thu, 09 Mar 2017 14:25:01 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| @@ | @@ -21526,21 +21526,21 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"25dee13741720289b90b8648a5e750e6" |
| + | - W/"85cb44da9c47876e0279ade81210d3d9" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 302cc36b-46a8-4a05-aa8e-c2ae266b9baa |
| + | - fa478054-597d-44f9-a3f6-c1804c22c660 |
| X-Runtime: | |
| - | - '0.040656' |
| + | - '0.048062' |
| Content-Length: | |
| - '377' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8b87f6437d12223c47","created_at":"2016-06-17T08:02:19Z","updated_at":"2016-06-17T08:02:19Z","content_type":"font","local_path":"fonts/chunkfive-webfont.ttf","folder":"fonts","checksum":"439633444f9d32a30a4449da967853d2","filename":"chunkfive-webfont.ttf","url":"/sites/5763ae8287f6437d12223b8f/theme/fonts/chunkfive-webfont.ttf","size":"37.3 |
| + | string: '{"_id":"58c165bd87f64357b6203445","created_at":"2017-03-09T14:25:01Z","updated_at":"2017-03-09T14:25:01Z","content_type":"font","local_path":"fonts/chunkfive-webfont.ttf","folder":"fonts","checksum":"439633444f9d32a30a4449da967853d2","filename":"chunkfive-webfont.ttf","url":"/sites/58c165b387f64357b620338d/theme/fonts/chunkfive-webfont.ttf","size":"37.3 |
| KB","raw_size":38156}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:19 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:25:01 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -22056,23 +22056,23 @@ http_interactions: |
| bS1kYXRhOyBuYW1lPSJ0aGVtZV9hc3NldFtjaGVja3N1bV0iDQoNCjgxNzRm | |
| YTY3ODkwYTZhZjljMGIwNTQzMmQyMWFmZGJkDQotLS0tLS0tLS0tLS0tUnVi | |
| eU11bHRpcGFydFBvc3QNCkNvbnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0 | |
| - | YTsgbmFtZT0iYXV0aF90b2tlbiINCg0KSHlxS3h5QkxtRUg5eF9HelluV1kN |
| + | YTsgbmFtZT0iYXV0aF90b2tlbiINCg0KMkE5aVRReW9BQ0hiQTRlQVZMQ0gN |
| Ci0tLS0tLS0tLS0tLS1SdWJ5TXVsdGlwYXJ0UG9zdC0tDQoNCg== | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:19 GMT |
| + | - Thu, 09 Mar 2017 14:25:01 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| @@ | @@ -22085,365 +22085,21 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"5598c2cdb534b0fe1491fbe3ea2e533b" |
| + | - W/"e75a9b4bbcac04b9e3608d68276ae5d4" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - eb3068e5-823c-426f-ada3-1df17562fdf3 |
| + | - e0a7c07d-e3e4-4dc1-a647-a1bfb0859651 |
| X-Runtime: | |
| - | - '0.043574' |
| + | - '0.046290' |
| Content-Length: | |
| - '380' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8b87f6437d12223c48","created_at":"2016-06-17T08:02:19Z","updated_at":"2016-06-17T08:02:19Z","content_type":"font","local_path":"fonts/chunkfive-webfont.woff","folder":"fonts","checksum":"8174fa67890a6af9c0b05432d21afdbd","filename":"chunkfive-webfont.woff","url":"/sites/5763ae8287f6437d12223b8f/theme/fonts/chunkfive-webfont.woff","size":"21.9 |
| + | string: '{"_id":"58c165bd87f64357b6203446","created_at":"2017-03-09T14:25:01Z","updated_at":"2017-03-09T14:25:01Z","content_type":"font","local_path":"fonts/chunkfive-webfont.woff","folder":"fonts","checksum":"8174fa67890a6af9c0b05432d21afdbd","filename":"chunkfive-webfont.woff","url":"/sites/58c165b387f64357b620338d/theme/fonts/chunkfive-webfont.woff","size":"21.9 |
| KB","raw_size":22384}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:19 GMT |
| - | - request: |
| - | method: post |
| - | uri: http://localhost:3000/locomotive/api/v3/theme_assets.json |
| - | body: |
| - | encoding: ASCII-8BIT |
| - | string: !binary |- |
| - | LS0tLS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0DQpDb250ZW50LURpc3Bv |
| - | c2l0aW9uOiBmb3JtLWRhdGE7IG5hbWU9InRoZW1lX2Fzc2V0W3NvdXJjZV0i |
| - | OyBmaWxlbmFtZT0idG9wLmpwZyINCkNvbnRlbnQtTGVuZ3RoOiAxMjY5Nw0K |
| - | Q29udGVudC1UeXBlOiBhcHBsaWNhdGlvbi9vY3RldC1zdHJlYW0NCkNvbnRl |
| - | bnQtVHJhbnNmZXItRW5jb2Rpbmc6IGJpbmFyeQ0KDQr/2P/gABBKRklGAAEC |
| - | AABkAGQAAP/sABFEdWNreQABAAQAAABQAAD/7gAOQWRvYmUAZMAAAAAB/9sA |
| - | hAACAgICAgICAgICAwICAgMEAwICAwQFBAQEBAQFBgUFBQUFBQYGBwcIBwcG |
| - | CQkKCgkJDAwMDAwMDAwMDAwMDAwMAQMDAwUEBQkGBgkNCwkLDQ8ODg4ODw8M |
| - | DAwMDA8PDAwMDAwMDwwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAz/wAAR |
| - | CAC0BLADAREAAhEBAxEB/8QAhwABAQEAAwEBAAAAAAAAAAAAAAECAwQFBwgB |
| - | AQEBAQEBAQEAAAAAAAAAAAABAgMGBAUHEAEAAQICCgIBBAECBgMBAAAAAREh |
| - | UWGBEwQUlFXVBgcYMQJxQZGhUhKxFfDB4QMFCNHxItQRAQEBAAEFAQEBAQAA |
| - | AAAAAAARARJRodEDFQIhMUH/2gAMAwEAAhEDEQA/APlj3b+WYI1UVc1ifmqu |
| - | mF5utP8ABpf4tWqsxWqL8tZrTNGs1rMZVpFUVVoVrGZ+FrWZ/SKBp8is1uqx |
| - | qpUFChRxTFZqzX0/n+YzKt4fqDUfJjn+9/jkacUBZkGaqFZUKixEaKhv8Khh |
| - | UaZRo/AsPlFAVAQPwCUn9QWBnVHP9OSBx1KxE0NM/K1RnfzFRiLCM61Es6xu |
| - | KjnuLE/DGs7jWLLG4qMbhCMbjXymozMRM2Z1c2H+JV5MzEx+iNfnc0rZrNN/ |
| - | P9PmRc3ZGJK7/ko1i8v4zMVV0z9E2Vc2lGs1pFqYytdMgVVaTBaCiSVvEK0s |
| - | VMZ/WqrnV0DKXGsKI1upMC5oFKQhv6Wysbq0KzTQUCgLYlE1c/SxBWd1qkFS |
| - | pkUUrLNKVSt0r+hRqLrWdVKlSlSlSnxBVqzRKmU/AbolQgqbq1KyJumYJV/W |
| - | dFtglY/qTP6pTOhWsJumfzUozVqI1VjP9krOtxRKxuqM1EpUlK3jNCtVqIsV |
| - | z3V/RalSnyVqs0la1ShVwWqirQKDRMpVw+fkqpTSVaqVKFVKM7pT4SgUEZoJ |
| - | uglUqVJKZpUpuNLWUKotD/RauC1vEn/Rc1vGCumMzP8A9Fdfz/WJisU/Za6/ |
| - | j9cdccxiy+z8/rNej8M15XNFWhVxJhW81mlGq0sTH6tZpuLNK1hvDEqrcKrj |
| - | WYzM5tY2zVqtxr5VYirhWRpBrEotEuogqiFQhPwLmf1j5qOzI3QpmtRIx+sa |
| - | q05QqJCosAgLBTMJRrEWmhSIlbiCpWMRqKiAHwqlZwQX8ogJurRYx+v10Fjn |
| - | pWcU0iINxijP6aqjlFRncWJZ3GdxtnXPcKs6xuLEs6zuNQzrGqlc9xpmsMfb |
| - | 5Zrf5/xKyEw/yn9Q4oVrM0Wrmf0lWsqLmtVn/Vcbo0uJP7rXTNPy0VJhWs1k |
| - | azVpW7WJukqVBQazRFsFqb/itVhpKzUkq5qJWhN1cQqaq1FoVmrcqfwKVqEr |
| - | O6WKVmiVa18fBWf9ZK2pWd0kpgValEq5+moWsaFKJUqFWlEORQKom6gyJQQo |
| - | m6uCUPhmp/rUXjBGP1+pqUTdWrRmpyWkFZp+ETdap/1K51mUq5qI3n6hYXdW |
| - | i1jdLlM0KtBvNYla3mi1Si0qWgrWHyVcKJWgAoFEZqglEoVKhVmrUqVNVKQK |
| - | hcqNUkrNT4WjXytRla0flaotaxJgzW8Y/C11/KDpjHwtdc/qLSPQmK/q5157 |
| - | P0lKf/JVrMtVrArpjEtZrpiNNoua3mVf8m804J9mmvzjKukKtY1CvwuabitC |
| - | VkU+VVBcLqqAtRCxSJJWvylaFbTEWsyN5oDauWi1AoFIpRBrEGsUSJMjeYxM |
| - | zX5GoT9pCIqiLFqESsizFrIzuLX/AKiRqJwGd/K1GIDO4CQRFiUTcWJGdxqr |
| - | LG4fDLGtRMM6zuNVZc9IlnXPW6wxrnolY1qGdYYrWZlmumfnYVSs7i0UpYXP |
| - | 1rMo6ZqTNv8ARqt5iVmFzVlWZq1iSIrVPyq0arSWVtKLVpRalJKYlFrVQqqJ |
| - | UKbq0KVorG6FTNRK1UpBVzShStUKzVGaFBKQKQKZgVP1/AqZpRK1VWsbqFM0 |
| - | StbtCpmzQzV/WhWSoUKBQSh8lQ/5JQhKv6yFU3TMRmtbArNWlmazutQlZ1U3 |
| - | WP8AESosRMom/puIp+UrnulClSYSmalE5N1ClbiFrG6klaxKLV3UVrNPyNZr |
| - | M2K6ZtZutVKFaCrgVQAoJQTdXBKhSUpRKfxUZAurZKzdWkSVKlIxKKVSi1Kl |
| - | 1rSaSgtWItawla6Y45Wuv5CtpP4qtaxiaFdc3ceizXmmZG8YVsXFzVmGsazd |
| - | 1iYbzXTNSVdvz/WGsdITNbN5qZkSqun5xm6uuZixNPlpNxqtVrMhdaFxWRov |
| - | iUW5QrOC1CuRRmZK3mIVrMBf8KKcgqLVaQEFQFK5AVGkmn6i5hcXGFbSwoKC |
| - | 4ABAUE1YGf1jVvmPlGU/yU38rE5jO41pRIlcxOKjO4VRmNVZ1jcWrOsbixP6 |
| - | M6xuNxMM657gxuue41Esa57iyjnq/ojDLm6clSLzxa5n9SYyVrIC3EvirWbi |
| - | UVrNRrNXdVtkWqLVKVVrNI+Fq0/K1ChVzUotWlCrShSlChQrOqUpQZpZKUsV |
| - | aJShU0qU/wBS6VrMzC6ValCrShUzWoXNc/1obqYaEpurRazUoVRKZqVK0VKi |
| - | 3KyXKqJVxYKi0SpVpQpUlN1fz/rKVvRmlKFZ3WoSs7qpWN1UZSgzViEqbrcJ |
| - | XPdVKyiUVKVGa1ShVqtZrOszCVvNIhqmp9puta/LJW8UrWM0j9Ct5rMrWsFr |
| - | WIVoKBUEphRmqJRU3UKJUqpU/olQKKlRP3KqrUCkpP5aoyVtGlwK1iStbxmc |
| - | yumItbRauakwN/n9a705I89+dW0x/wAw/wAZmM2sazWVzW4NVr8pLWN5rDTt |
| - | +djEx+7WO2aitszN2nT85kKwtaiWazV3GvxKsbi1lUSpVxIK1q3xKhfEoVnI |
| - | qFZWqyjeairQpilXRamJdK3kVrNZ/WC1krJVKytWJMzJTEkbw0gkq0yKooKF |
| - | QWkKJWsKFUolCi1FKzuJVUzC6VdwgZ3GoRn9Y0lc9xayzrG4tWdZ3GmXLcWJ |
| - | lnWNxq7G65bjUSzrnuNRRnXLcGd1Mz+jNXfyIxCwIFBrFoVvMZVvNRc1UbzQ |
| - | WrgrQNYi01brUVaiFaxK5lValMWqVNFrO6FQSgUCpRKuahUoLmwQ5AVaCckF |
| - | rdErnulClKQUpYpSwUKM0grVKVKi0KBQpBSiUUqVUrLMputYlGa1VKlaolTd |
| - | LJWahWd1aJWd1aM7rLUQlZ3QrAlRaJUKQlUKtClShTP6o2zMFVKQtXEVvE/l |
| - | a0fJW8ZmRvE+VrSaBT4KqfINJURKqpQSoXZqLRKi0gqFkqFkqlYKFc6CxLLV |
| - | Sv6Lmm4aFpiLW8xFrQua1mJ/JW8ZWt4i1oWrj7xV9VeJzCclrWYzk1mrP7Ua |
| - | zXVmstZrpmFW8bzGKt47ZjM0n5hrNdfyzSNLWa6f64/tSq19Hrz+M/lrNam/ |
| - | 8KNNZ+lhc1P1lb0rXEWiFWqVKFAohVxKJWzStUKuaUXNXWZKuLRcXkLWS60R |
| - | apcqotUVrEDEK3gVQqlCqFUSqUUqKUCnwipUFWsnwH+lcmajRWNxSuetQzrn |
| - | qwzrnuNRLG657jUMa4/rGoY3XL9Y3Esa4/rGoY1y3FY1nMKMaUoyU0hcA/hU |
| - | gq4tRVqN4tRWs1KLmtI1mtBWs0K1RrNZ0WshShWs1CrmqVndIKzrV5KyUSlQ |
| - | q1UrNSU3WvzoVd1Ss7oVBKQKL8FYtK/BSCVApQoFUKBVoU0KlEpQqhUoVKJQ |
| - | Z3WsW2LNEsUaiYZZ1a5FY0qlZKpU1aJWNaiGd1jV/lN1lUQulQt+UomhKLSn |
| - | 6HJUlaYmlHTEt/1XNaZmcFreYjVbxFrWMzmV0xJyG8ZmFroVKpZFKoKUgm6F |
| - | vyzQRF/P7MohSLVEhdCAkCrF0CpbAqxNDWashVaRF5NYzM0Wt5iTJjeYlWq3 |
| - | mHz+tFrWYz+FrWM3K65HofhK8vD/AFWqmbWa0kt1v84y1mumMy3mumYzM6Ws |
| - | dsxKt5rpjNms1vHHMXla+n8f4zRa6JePiWqStR9pwKzv4bhquW4f4yvJCmSU |
| - | pReSFJOQUk5BRN/TWCVSi0pRaVmpWilbrVz9Ggq5o1mlKSvIS61SklXEWqli |
| - | tYllaSqrhcrSXW4qaUawviKXArKm4f5Gpi1KEzBVxLFaBnSuYuYtcZRnisTH |
| - | /VGdxalc9xqjNc9airO6561Rjdc/01pY3XL9Y1E5Ma5fr8tf5TgxrluNf5Sx |
| - | rluLWWKzuLWWXPcWqIIhQChQp/8ASrWVao1VFq4K1moVrNKFWpRa1Si0pRag |
| - | tZCrRKUKKVjdKFSlClLJSqVKJUzUStVblQocilEpShSqbrOalEzV3VKyGaul |
| - | CoFQKtKHIpRKUocilClSxVoUXSVkSqylazVSrRKzVolTdWiVjRKytJSs61Sf |
| - | 1lKzrVY/VlkroRnSuhKyIKlMSyVpNJSAuYi1vMSi1vMRa3jM5ma3mJ/xVqt5 |
| - | jP5la3mJ/BW8xEreC1SxWkSqJSL/ABCUh+I0pupBKkWzO6kEotUqQugaRE0i |
| - | lZFzEqVrifiVXGarW8/GEfbFca38MzMq3+MyIvJrgNUzEmFreYlVVJK6fnMe |
| - | gV5dJn91xcScYVvMZmrWa6ZiVbxqMzLea6/lmZhrNdvzlYq3n6dc/I3mrmMT |
| - | Ra7fnIi1sKtKLVrUNVx/X81aHJmrQ5FKHJKlDkUKJJVqXj4qVatZClZwVaaC |
| - | tUqtTMK/utWpXIUqtMSsrWkutVNK1rEK0llq0K0lFrVCqUWrUpkVRaJpKu6u |
| - | kpS5UKLVolKFKklXDRpSppQqVqGa5/puITdctaozusa1DG6561ZjdctaiWN1 |
| - | y1pjdctW7G65atWWVrLGs7i1Ssbi/wCRU4n+UFTiv+UFOKTlJWsxFzVkFonw |
| - | tXCytItC5WqkTMKtX/LID/LGAWsFRaxiVCxQKlKFTdKHJmlDkVaM7pShWaUK |
| - | VaJSlClWhUpRORQqUoVKUSlKFKtMilKFKhVNBRLlEKtUqVKFWhSkJSrpKJRK |
| - | pQoWxShZELIRaozq1yoM6Vn9GUiwlZ1baUrK2Z5JFr+xWdGaQpiULYIRKjUS |
| - | w1malZK3mIrWYlZVvMZ+M1rpmJ/xQrWYz+FdMwurWfln8LW4mkrUK5IsKiwS |
| - | rCuLNSLWqJBCFUOJdEi3EhdKsEpMFqwKsSSrmJ8fJWpSZiVq5+dxmw3iXaq5 |
| - | kS2I6YlaLmrxXS1SMzOS1rPyzKVv85Ho/F4aeXzEmVzW8/LM0azWsxm7WOmY |
| - | lcWsahVvG8Ylp1/Osyrt+WWs10xGq1iUWrSi1aLSrH6Ln6Y/WL8LyZm6JyIt |
| - | SpFKgVKUKUoVaLSoVamhatCrUWrSi1aUWrUotapRatShVqTRa1Sy1qpZatSZ |
| - | wgaxm6tYVVTQKVAqCaFVaiFiqWKFionylazSiUqwlZ1quSVjcai5uuWqzusa |
| - | 1EMbrnrUQxuuWtR+WN1z1qJY3XLcWrnusbjUM7rnq1Z1nUrCItYRCxQKC1RR |
| - | ariJZaFlrRbEoLRCqUKUoUoUpQpShUpQqVpKzTSVN1b4lRUqBUKoq1E0rBUK |
| - | 5IH+WQFZ/UNKoyf5ClZBLgXKFyqUkoUkof4lCkFUsUEqi0RKuJfEpCmlKLQo |
| - | USoqUKwlQqlRazPwiKjOn5ZSFhmLWf0QionFCrxEpBK1iDWYK1mM/hWsT5+S |
| - | t5iK3mItbzE+VbzGf5K3ifwtbxLFaKwlVK4JVh+UqwqEE0i/H6s7pEZpq1Eh |
| - | WUpFuicUKcTSESw1hZVhZViVFw+VajN1axLLWsxKq1h8jWJeCrEWtZj0KxLb |
| - | zOYk20q1mMV/RW8xGm8wazWsZr/Lea1EmWs1vMZn+FrtiNZrWJRa1iUarVKF |
| - | KFKFAqLQqXV+Cpv9F5Mbi0OSJReQtMyiXWqXKUWrQq1Fqi1ai1UutUuVpKLW |
| - | sT/FeTRReSpTM5NJZeTVLFWpWFq0rBVpWDkFYOSlsV5BbI5FSxyE0HJY1Y5M |
| - | p+Eq4VKKlQZ3UrSVy1bpusbjX/6xY3XPcVjXPcaifwzrnuNxOTGue4QzrO41 |
| - | WWNc9xqqaxuFUTiIi2KFChcIVCJVqhZakUqxKLVLlC60KiLXJKhWMAKhq1gq |
| - | atIxSs0pBUKHIWk4lZKJQoVCiUKFChUXQlKUyKlEpVoUqaSgULAWBKilZFKy |
| - | ES5VhQoWxKsSxQRYtxS4F8UqFMyhYoM1D8JRUSLXArMPhKRUqbhVKkEqQqVY |
| - | MkKhEqVYVK1n5QreYVVqMzSCt5iV0LW8xmqt5iSZreflP8lbzCsFazEmRrMZ |
| - | sNQqNRPn5SrFqyQuiCG4v4EhWU1YIzAIWCBVhYIlYKuFVrUKhGayrWYFWJ8K |
| - | 1iVVrBaqXGitBcdz4dHnYfP5Gol/y1mtZiLmtRNLeNYl2saxP+KrW8Z0rXTC |
| - | 7VaTQtVLLVFotyhoKhSCoUgqVblKJUotQKkUpCq0NBRNC8lK5LVqVjAqlmqt |
| - | SuRVzUrktaLrWkutWppWtVKHJc1F5NFlq1LFaqFXBa0XKpdatSmRRdBUQpV0 |
| - | FKaClEpQqVaJUpSU3UrSVjVZ3XPVZ3WdxqGd/TnrTG656sM7rGtMbrGqzWNV |
| - | KzuFUrO4tRIACQCKqQFQCi0NJQuUW5QqVCxQsVFsVCkHJCmZUglSLcqFypC4 |
| - | LdELilxC+KIFAopQELpVChQoJRCqVKFZFS+IApoKsEWAsQIBApBKRfxBSH5l |
| - | KRaxiiRPkpFqynEgIVzRIRiiRReKJTfytUTig1n5Ki8UGsxKjWYlVb4oNZjK |
| - | umYTcrWYzVW8xBvMT+VqxLlagVYMqWAgIIsISotUIlU0iokAgAACC4NY1AWI |
| - | ERWsCtJRaqVVYlZRQadyrpmvwuJVpYhSIrURqrEs1WsxFreYjWa2LVFoi1TQ |
| - | UKQVFKBUCoWKi6SofsUNC1CxQpBQ0rVP2KFFqoVqpRapTNaItbxFqotVCtYa |
| - | FrSXWqXK0mlatNK1U0lWmlatNJSmkq0vitKXxSpQpSmZSmkqVdKUppSpVSs1 |
| - | Wazqs7rOrRndZ1qGd1z1Wd1jcVnWdxUY3FuyzuKjMEZ3FqJxKicSocQSBSBS |
| - | KUgtSBQWoVKQSopU0WhZKhYqLYqLSUoaSoFRboFZELlIJUWpQqVC+BQrKULl |
| - | C+KLmAsQpCgQoLDSEBYgsCkNJViFUKQKogaQLYhCoQKQSkWqEBIVSkRCLVCF |
| - | RYIbhpCJUWFUWINQFzGarjpBVzGZG8xBvMFXMZ+PkreFRqJXEVK4CnyqxbQl |
| - | CrNWM/INIgERF3FGYCgAQACJpG4WUhWBYlQSsjWAoVYWWqyqu22/HiKQF4st |
| - | Y1CsrViaGqsSy1qCrD+Voi1RRSgVAqBUUqBUCi6SoaShfIoaFoFEWhoKpZaq |
| - | WwKqLWjQtXE0LWii1c1NJWqlM1rVRaqWWtYLVCqmhaoUCgUKLVpTIqCUKFDQ |
| - | VFpklBKlVKzVZ3UVKyrO6zozus60zusaM6m4qM7iozuCMxUSKiQqJCoQrC1I |
| - | pSBUFoFSGkpFKkCpApAqLZKhUqRSpAqQslSKVIFIqVIBCwkKwEKhCqJCoQqE |
| - | UpEuVYXKQuVTSUQqw0JSBVhpKsQqwKQKsNJSBViFIFWCUhUIVFhUSARUIkyh |
| - | AItckIlRYVZN/IESosKjUKixKjWYi43EqqwRrMYqreYXRqCrBVjNIK0JVgEE |
| - | WJUWECKilghWEItYRIVCJUIVkC4oESg1BSFBYAWBn8KpcVBpQdh0fmcWZlcX |
| - | PysSpEmQh8tVYirD+VILVRaGkU/laLoKgVARRAAZAilQKBQWhpKGlaBVRaoV |
| - | cRaqLWgqpZeSotaCqi1pFqhVRa0FAqi0CqFQKBQSgVBKKVldCUErKs1F0pus |
| - | jNZXQm6kXQzWYqVIJWYtUqQqJFvgUgVIWKkNJUi0CFBICQCKVIFSFipFslQq |
| - | UUqBUBCwi1hEhUIokNKBpKkNJSARaokKgVCJUIVzCFQgLAAUqEQqwKsAgLEF |
| - | hcWFwBYgsACglWBSFc0pCpViVyCEIkXSEBYlUWFUWAkKixBYVFiTI3n5RWoC |
| - | xBYkjWYlcRrCo1EFgLCosQWApYRa4IRLyLCiEEWKM7gABUEqBUVKjRVSF1IC |
| - | gQAFASwOVt8UFSJVSKpC8CwqoikFpDSVRaGgqQKKIaCoaCilQKkUqRFpAqLp |
| - | KQ0lBSBSIVYKAqLWkKppWqmlaoVpFqmha0hVP2WqXwKqFD9lqn7FU/Yon7FF |
| - | /YofsVAoJUNMFF0pUEqGhKi6EqL/AAiGlGVZqCVIqVIIkWxUhWEqQqEUSCJF |
| - | oJCgQKkNK1IpUhoKQsJFsJCokXQJC6JC4QKkVEgEKiQqJFqEBApApBKkUpCp |
| - | SFSkSpSFReJUIVRYlQhVVhUWFYFiVSrCpSFcyrCosSoQqLCoQrmLCoRKiwqh |
| - | CoQuUgUgEEWAsQWCEKhxK5oRKiwqNZ+UVuCrE/MhCo1BFjNBcSqtQqLgKVgV |
| - | Kz+iKUkRUUAqCVVSsskA3AZUWAQCAINAooAKFQSoQFgVW6tvji2CAkTQ1SLW |
| - | Ah+JWkLlIVyWkLCmlUNKELqglFWpDSVIqVBahYpDSJDSELhDQoaChoKC0iFW |
| - | BVFqxNBVFqi1U0laNKqi1UsVSxVTQtUKBVFofsVQqBQKCUNBUVKBUEqCUVKg |
| - | lRUSCVFRIIkKhFRICRUSFQhUSFVIVKkKlSLUqQSpF/gpDSJFEgiQ0BFqJASF |
| - | cxIaYCBUilSGgpCqVIVKQqUhUpAqQKQKQKRSkQpBKsAgLAIn8CwkWILFKQKs |
| - | QqwKsQICgQCAsLBAIBBFhUIgsKiwqixLosNIQrkqwuLEqiwqLEVYCwFiBAUs |
| - | LE0CoKUFWyBVVSoAsAEBFBFEBACoqVAqKlVUrIsQIpVgUEoAA1V1fNCokWoA |
| - | CkRUi1zCAAAQWoWxKGkqKItgLCFRItUSIoApSBSFykKrSJUpDStWBViFIi1Q |
| - | qi1oKJoWtBRFrQURaoUCqaSiaVoJVUqRNJRSgVBBSoJQSpFSoJQ0lItkqFUq |
| - | QKkWuSEKlSJoKRUqQKRbFSBSL8CQEhUIokBIXEBIqVIVKkWpSFSpxKlIVKkK |
| - | oQEgECpFsEBIBFqHEqHEqHFA4lRYVCFRYVDiVDigsEWAQFiCwUhVFgEK5ixK |
| - | 5hCosAhXIWAQCJpFgELCwCAsTShEsiwqLAICxBqFQgqwAFhUWJcWFEIWFiVV |
| - | YBAWAAoACVQKhC4CJFCAQFCgUQqhQRQAKCUFAWrs4wqJAQBayJCoQrGAQt+C |
| - | hpWi6SpC5QEgELFQ0iKhDQJFstIWxKQ0lSBSC0hfApC5SGgIKsCkS5VgVUWq |
| - | aSrEWqFUKItU0FVFqroKJoKBQKGgqmgqBRdCUQot0qGkoaQNKIWBa5IkLhBE |
| - | KgXKkVCCBWRC4QuJFvgJAFEAiokBIVyKQqVIVzKQrmJFqJEqJFCAkWwkAgEW |
| - | qJxA4gQCAQqEKhxKhECFRYBAIFWBSJUqwqUhUqwqlIVVYaQiaRYCwqhCuQQq |
| - | qw0hE0hAWFghWEpCpVhUpEqiwCILAICwCAsBYVgWJUIXFgELCwqqpcICwAFA |
| - | KglQgLBKsEoFBEUQAAAAABAAAUEAFoI1WMHWsQsUhSCoUAuJEupAIv8ACJBQ |
| - | ogUKi3KBUgtItkqQsVIaSkVUiBAIAAAAWAsqpbEAqirE0AWFLqpcIlyqLVNI |
| - | IKaQNJQKotAoJQKBQsVCxQslFKkEqwEEC4kKJRQBEBaIi0gICQKQqlItQiVK |
| - | RaiQKhUQviItxFCGgSAQsEBIaQiiQCAQCAQSpApApApApAqQQAhpFhpCAsQI |
| - | BFFiAChViFWFSkKlWIEBYBgLAAIBAEqLAICwAoABVFhWQS4pQUFLAlRYXUgK |
| - | ACiiVAqLBKQKolABAEoIoAAAAAAAAAAIAALAWOKf+5GLTMY1sYlImujGCkNd |
| - | GMFIuvjGFqQ18ZFIa/65FSLrvrjBSGu+uMFIa2MYKkNdGMFIa6MYKQ10YwJD |
| - | XRkJDXxkENd9cYEhrvrkENdGMCQ18YhDXxjBSGvjGCkXXxjC0hr4xgpDXxkU |
| - | 4mv+uRSGu+uS0ia6MYKQ10ZFWGvjIqw18YwUia6MYWrDXRjBSGujGCrE10Yw |
| - | tU131xgU131xgoa364wUNdGMFWGt+uMFIa6MYKQ131xgpDXRjBSGujGCkNd9 |
| - | cYKQ131xgpDXfXGCkNd9cYCGv+uQkNdGSUhroxgpDXRjBSGujGEqQ10YwLDW |
| - | xjBUi62MYKQ1v1xhKRdd9cYKkNd9cYSkNdGMFIa764wUia6MYCGujGCpF10Y |
| - | wUhroxgZ3F18ZBDXfXEIa/64wJDXfXGESGvjGA4rr4xVOJr4xKcTXxjBTia+ |
| - | MinE18ZFOJr/AK5FTia/6pTia/6lIa/64lSLr/riVIa/64lIa/64lIa/64pU |
| - | hr/rjBSGv+uJSGv+uJTia764lOJr/riU4mv+pV4mv+pTia+MinE18YwVeKa+ |
| - | MYDia6MQhroxFhrvrjAcTX/XGBYa+Mg4pr4yDiuvjIOKa6MRYa6MhYa6MirD |
| - | XRjBUhrvrjBSGu+uMFWGu+uMFIa/64wVYa/65FIa/wCuSVImvjIqw18YwVYa |
| - | 6MSkNdGJSGu+uMBDXfXGAhr/AK4wLDXxkETXRjAsNbGMFJprfrjBVhroyFzD |
| - | XRjAqa6MYUNfGMBE10YwVYa6MYKsNdGMFDXRjCUNdGMFU10YwUNdGMJUXXRj |
| - | BQ10YwVDXRjBQ10YwIa6MYA10YwBroxgWGujGAhroxgIa6MYCGujGAhroxgW |
| - | JroxgIa6MYCGujGAhroxhVhroxgF1sA1H/cgR43/AHNpiP1WrxdX7bbEfqlX |
| - | i49/p+pTib/GJU4rv8YpTib9GJTib9GJTib9GJyTib9GJyOK79GJyOJv8YnJ |
| - | OJv8f2ORxXf4xOScTf8A64nI4m//AFxORwXf/r/ZeScE376/2ORxXfvr/Y5H |
| - | E36P7HI4m/Rick4m/R/YpxN+jEpxTfo/sU4m/wAYlOJv8f2KcTf4xKvE3+MS |
| - | nE3+MSnE3+MVq8Df4xKcE36MSnE36MVq8U36MSrxN/jEpxN++uJyOJv31xg5 |
| - | LxN++uMLyOJv31/tByOKb99cYOS8V3764nI4Jv31xg5HE376/wBoORxN++v9 |
| - | jkcTfvricjgb/wDXE5HBd/8ApinI4G//AFxORxTf/rick4n+4fUpxP8AcIxg |
| - | pwN/zSnFd+jE5HE36MU5HE36MTkcDfoxORxN/jFKnE36MSnE36MTkcTfoxOR |
| - | xXfoxOScTfoxORxN/j+xyOK7/H9jkcTf4xOScT/cIxORwN/+uJyTgu//AFxO |
| - | RwN/+v8AZeRwN+j+xyOJv0f2TknE36P7HI4G/wAYnJOJv0YnI4m/xinI4m/x |
| - | iU4rv8YlTib/APXEpxN/+uJU4m/xiU4m/wD1xKcDf/riU4G//XEpwN/+uJTg |
| - | b/8AXEpwN/8AriU4G/8A1xKcDf4xKcDf4xKcDf4xKcDf4xKvA3+P7FOJv0f2 |
| - | KcDfo/scl4m/R/Y5HFN/+v8AY5HE3/6/2ORxN/8Arj/JyXib/wDXH+TkcTf4 |
| - | x/k5HE3+P7fycjib/H9jkvE3+P7HI4Jv0f2TkcTfo/sU4m/RiU4rv/1xKvFN |
| - | /wDriU4m/wD1xKcTf4xKcT/cIxWnE/3CMSnFN/jEq8Tf4xKcTf4xKcTfo/sV |
| - | eJv0YlOJv0YlOJv0YlOJv0YlOJv8YlOKb/GJV4G/xiVeBv0YnJeJv0YnIib9 |
| - | GKcli79GJUhv0YlOJv0YlOJv0YlOJv0YlOJv8YlOJv8AGJU4m/xiVeJv8YlO |
| - | Jv8A9cSnFN/jEq8Df4xKcTf4xKcTf4xKcTf4xKcTf4xKcTf4xKcTf4xKcTf4 |
| - | xKcTf4xKcTf4xKcTf4xKcTf4xKcXJ9dtif1KR2/+3tUTS61Nx+8fv/6q+Mfv |
| - | 8/8AlO6o/G27F/8AwPO/Y9vTO/l6v4Xp6/rt4df7f+pvi77fP/lu7OO2Hp6f |
| - | X9vTO/lfh+nr+u3hn1K8W837s47Yenn1/Z0zv5Pienr+u3hPUrxbzfuzjth6 |
| - | efX9nTO/k+J6ev67eD1K8W837s47Yenn1/Z0zv5Ph+nr+u3g9SfFvN+7OO2H |
| - | p59f2dM7+U+H6ev67eD1K8W837s47Yenn1/Z0zv5Ph+nr+u3g9SvFvOO7eO2 |
| - | Hp59f2dM7+T4fp6/rt4PUrxbzfu3jth6efX9nTO/k+H6ev67eF9SvFvN+7eO |
| - | 2Hp59f2dM7+T4fp6/rt4PUrxbzfuzjth6efX9nTO/k+H6ev67eD1K8W837s4 |
| - | 7Yenn1/Z0zv5Ph+nr+u3g9SvFvN+7OO2Hp59f2dM7+T4fp6/rt4T1K8W837s |
| - | 47Yenn1/Z0zv5Phenr+u3g9SvFvN+7eO2Hp59f2dM7+T4Xp6/rt4PUrxbzfu |
| - | 3jth6efX9nTO/k+F6ev67eD1K8W837t47Yenn1/Z0zv5Phenr+u3g9SvFvN+ |
| - | 7eO2Hp59f2dM7+T4Xp6/rt4PUrxbzju3jth6efX9nTO/k+F6ev67eF9SvFvO |
| - | O7eO2Hp59f2dM7+U+F6ev67eD1L8Xc47t47Yenn1/Z0zv5Phenr+u3g9SvF3 |
| - | OO7eO2Hp59f2dM7+T4Xp6/rt4PUvxdzju3jth6efX9nTO/k+F6Ov67eD1L8X |
| - | c47t47Yenn1/Z0zv5Phenr+u3g9S/FvN+7eO2Hp59f2dM7+T4Xo6/rt4PUrx |
| - | bzfuzjth6efX9nTO/k+F6Ov67eD1K8W837s47Yenn1/Z0zv5Phenr+u3hPUr |
| - | xbzfuzjth6ev1/b0zv5X4Xp6/rt4PUrxbzfu3jth6efX9vTO/k+F6ev67eD1 |
| - | K8W847t47Yenp9f2dM7+T4fp6/rt4PUrxbzju3jth6ev1/b0zv5Ph+nr+u3g |
| - | 9SvFvOO7eO2Hp59f29M7+T4fp6/rt4PUrxbzfu3jth6efX9vTO/k+H6ev67e |
| - | D1J8W837s47Yenn2Pb0zv5X4fp6/rt4PUnxbzfu3jth6efY9vTO/k+H6ev67 |
| - | eE9SfFvN+7eO2Hp59j29M7+T4fp6/rt4PUnxbzfu3jth6efY9vTO/k+H6ev6 |
| - | 7eF9SfFvOO7eO2Hp59j29M7+T4fp6/rt4T1J8W837t47YenH2Pb0zv5Pienr |
| - | +u3hfUnxbzfu3jth6efY9vTO/k+J6ev67eE9SfFvN+7eO2Hp59j29M7+T4fp |
| - | 6/rt4PUnxbzfu3jth6efY9vTO/k+H6ev67eD1J8W837t47Yenn2Pb0zv5Ph+ |
| - | nr+u3g9SfFvN+7eO2Hp59j29M7+T4np6/rt4PUnxbzfu3jth6efY9vTO/k+H |
| - | 6ev67eF9SfFvN+7eO2Hp59j29M7+T4np6/rt4PUnxbzfu3jth6efY9vTO/k+ |
| - | J6ev67eD1J8W837s47Yenn2Pb0zv5Pienr+u3g9SvFvN+7OO2Hp59f29M7+T |
| - | 4np6/rt4X1K8W837s47Yenn1/b0zv5Pienr+u3g9SvFvN+7OO2Hp6fX9vTO/ |
| - | k+H6ev67eD1K8W837s47Yenn1/Z0zv5Pienr+u3hPUrxbzfuzjth6efX9nTO |
| - | /k+J6ev67eD1K8W837s47Yenn1/Z0zv5Ph+nr+u3g9SvFvN+7eO2Hp59f2dM |
| - | 7+T4fp6/rt4PUrxbzfu3jth6efX9nTO/lPh+nr+u3g9SvFvN+7eO2Hp59f2d |
| - | M7+T4fp6/rt4PUrxbzfu3jth6efX9nTO/k+H6ev67eD1K8W837t47Yenn1/Z |
| - | 0zv5Ph+nr+u3g9SvFvN+7eO2Hp59f2dM7+T4fp6/rt4X1K8W837t47Yenn1/ |
| - | Z0zv5Ph+nr+u3g9SvFvN+7eO2Hp59f2dM7+T4fp6/rt4PUrxbzfuzjth6efX |
| - | 9nTO/k+H6ev67eD1K8W837s47Yenn1/Z0zv5Ph+nr+u3hPUrxbzfuzjth6ef |
| - | X9nTO/k+F6ev67eD1K8W837s47Yenn1/Z0zv5Phenr+u3g9SvFvN+7eO2Hp5 |
| - | 9f2dM7+T4Xp6/rt4PUrxbzfu3jth6efX9nTO/k+F6ev67eD1K8W837t47Yen |
| - | n1/Z0zv5Phenr+u3g9SvFvOO7eO2Hp59b2dM7+T4Xp6/rt4X1K8W847t47Ye |
| - | nn1vZ0zv5T4Xp6/rt4PUvxbzfuzjth6efW9nTO/k+F6ev67eD1L8W837s47Y |
| - | enn1vZ0zv5Pg+jr+u3g9S/FvN+7OO2Hp59b2dM7+T4Po6/rt4PUvxbzfuzjt |
| - | h6efW9nTO/k+D6Ov67eD1L8W837s47Yenn1vZ0zv5Pg+jr+u3g9S/FvN+7OO |
| - | 2Hp59b2dM7+T4Po6/rt4PUvxbzfuzjth6efW9nTO/k+D6Ov67eD1L8W837s4 |
| - | 7Yenn1vZ0zv5Pg+jr+u3g9SvFvN+7OO2Hp59b2dM7+T4Po6/rt4PUrxbzfuz |
| - | jth6efW9nTO/k+D6Ov67eD1K8W837s47Yenn1vZ0zv5Pg+jr+u3g9S/FvN+7 |
| - | OO2Hp59b2dM7+T4Po6/rt4PUrxbzfuzjth6efW9nTO/k+D6Ov67eD1L8W837 |
| - | s47Yenn1vZ0zv5Pg+jr+u3g9S/FvN+7OO2Hp59b2dM7+T4Po6/rt4PUrxbzf |
| - | uzjth6efW9nTO/k+D6Ov67eD1L8W837s47Yenn1vZ0zv5Pg+jr+u3g9S/FvN |
| - | +7OO2Hp59b2dM7+T4Po6/rt4PUvxbzfuzjth6efW9nTO/k+D6Ov67eD1L8W8 |
| - | 37s47Yenn1vZ0zv5Pg+jr+u3g9SvFvN+7OO2Hp59b2dM7+T4Xo6/rt4PUrxb |
| - | zfu3jth6efW9nTO/k+F6Ov67eD1K8W837t47Yenn1vZ0zv5Phejr+u3g9SvF |
| - | vN+7eO2Hp59b2dM7+T4Xo6/rt4PUrxbzfu3jth6efW9nTO/k+F6Ov67eD1K8 |
| - | W847t47Yenn1vZ0zv5Phejr+u3g9SvFvOO7eO2Hp59b2dM7+T4Xo6/rt4PUr |
| - | xbzju3jth6efW9nTO/k+F6ev67eD1K8W847t47Yenn1vZ0zv5Phenr+u3g9S |
| - | vF3OO7eO2Hp59b2dM7+T4Xp6/rt4PUrxbzju3jth6efW9nTO/k+F6ev67eD1 |
| - | K8W847t47Yenn1vZ0zv5Phenr+u3hPUrxbzju3jth6efW9nTO/lfhenr+u3g |
| - | 9SvFvOO7eO2Hp59b2dM7+T4Xp6/rt4PUrxbzfu3jth6efW9nTO/k+F6ev67e |
| - | D1K8W837t47Yenn1vZ0zv5Phenr+u3g9SvFvN+7eO2Hp59b2dM7+T4Xp6/rt |
| - | 4PUrxbzfu3jth6efW9nTO/k+F6ev67eD1K8W837t47Yenn1vZ0zv5Phenr+u |
| - | 3g9SvFvN+7eO2Hp59b2dM7+T4Xp6/rt4PUrxbzfu3jth6efW9nTO/k+H6ev6 |
| - | 7eF9SvFvN+7eO2Hp59b2dM7+T4fp6/rt4PUrxbzfu3jth6efW9nTO/k+H6ev |
| - | 67eD1K8W837t47Yenn1vZ0zv5Ph+nr+u3g9SvFvN+7eO2Hp59b2dM7+T4fp6 |
| - | /rt4PUrxbzfu3jth6efW9nTO/k+H6ev67eE9SvFvOO7eO2Hp59b2dM7+T4fp |
| - | 6/rt4PUrxbzfu3jth6efW9nTO/k+H6ev67eD1K8W837t47Yenn1vZ0zv5X4f |
| - | p6/rt4PUrxbzfuzjth6efW9nTO/k+J6ev67eD1K8W837s47Yenp9b2dM7+T4 |
| - | np6/rt4PUrxbzfuzjth6efW9nTO/k+J6ev67eD1K8W837s47Yenn1vZ0zv5P |
| - | ienr+u3g9SvFvN+7OO2Hp59b2dM7+T4np6/rt4PUrxbzfuzjth6efW9nTO/k |
| - | +J6ev67eD1K8W837s47Yenn1vZ0zv5Pienr+u3g9SvFvN+7OO2Hp59b2dM7+ |
| - | T4np6/rt4PUrxbzfuzjth6efW9nTO/k+J6ev67eD1K8W837t47Yenn1vZ0zv |
| - | 5Pienr+u3g9SvFvN+7OO2Hp59b2dM7+T4np6/rt4PUrxbzfuzjth6efW9nTO |
| - | /k+J6ev67eD1J8W837s47Yenn1vZ0zv5Pienr+u3g9SfFvN+7eO2Hp59b2dM |
| - | 7+V+J6ev67eD1J8W837t47Yenn1vZ0zv5Pienr+u3g9SfFvN+7OO2Hp59b2d |
| - | M7+T4vp6/rt4PUnxbzfuzjth6efW9nTO/k+L6ev67eD1J8W837s47Yenn1vZ |
| - | 0zv5Pi+nr+u3g9SfFvN+7OO2Hp59b2dM7+T4vp6/rt4PUnxbzfuzjth6efW9 |
| - | nTO/k+L6ev67eD1J8W837s47Yenn1vZ0zv5Pi+nr+u3g9SfFvN+7OO2Hp59b |
| - | 2dM7+T4vp6/rt4PUnxbzfuzjth6efW9nTO/k+L6ev67eD1J8W837s47Yenn1 |
| - | vZ0zv5Pi+nr+u3g9SfFvN+7OO2Hp59b2dM7+T4vp6/rt4PUnxbzfuzjth6ef |
| - | W9nTO/k+L6ev67eD1J8W837s47Yenn1vZ0zv5Pi+nr+u3g9SfFvN+7OO2Hp5 |
| - | 9b2dM7+T4np6/rt4a+v/AKmeLvr8f+X7s07dsPT1+t7Omd/J8T09f128Ox9P |
| - | /VXxj9Pj/wAr3VP523Yunn1/Z0zv5T4fp6/rt4fpO2b8p+yWzAtmBbMC2YFs |
| - | wLZgWzAtmBbMC2YFswLZgWzAtmBbMC2YFswLZgWzAtmBbMC2YFswLZgWzAtm |
| - | BbMC2YFswLZgWzAtmBbMC2YFswLZgWzAtmBbMC2YFswLZgWzAtmBbMC2YFsw |
| - | LZgWzAtmBbMC2YFswLZgWzAtmBbMC2YFswLZgWzAtmBbMC2YFswLZgWzAtmB |
| - | bMC2YFswLZgWzAtmBbMC2YFswLZgWzAtmBbMC2YFswLZgWzAtmBbMC2YFswL |
| - | ZgWzAtmBbMC2YFswLZgWzAtmBbMC2YFswLZgWzAtmBbMC2YFswLZgWzAtmBb |
| - | MC2YFswLZgWzAtmBbMC2YFswLZgWzAtmBbMC2YFswLZgWzAtmBbMC2YFswLZ |
| - | gWzAtmBbMC2YFswLZgWzAtmBbMC2YFswLZgWzAtmBbMC2YFswf/ZDQotLS0t |
| - | LS0tLS0tLS0tUnVieU11bHRpcGFydFBvc3QNCkNvbnRlbnQtRGlzcG9zaXRp |
| - | b246IGZvcm0tZGF0YTsgbmFtZT0idGhlbWVfYXNzZXRbZm9sZGVyXSINCg0K |
| - | aW1hZ2VzDQotLS0tLS0tLS0tLS0tUnVieU11bHRpcGFydFBvc3QNCkNvbnRl |
| - | bnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0idGhlbWVfYXNzZXRb |
| - | Y2hlY2tzdW1dIg0KDQozZjZhMTVmMmNlODkyMzUwOTJhZTI1YjEyNTA4NGRk |
| - | Nw0KLS0tLS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0DQpDb250ZW50LURp |
| - | c3Bvc2l0aW9uOiBmb3JtLWRhdGE7IG5hbWU9ImF1dGhfdG9rZW4iDQoNCkh5 |
| - | cUt4eUJMbUVIOXhfR3pZbldZDQotLS0tLS0tLS0tLS0tUnVieU11bHRpcGFy |
| - | dFBvc3QtLQ0KDQo= |
| - | headers: |
| - | User-Agent: |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| - | Accept: |
| - | - application/json |
| - | Accept-Encoding: |
| - | - gzip,deflate |
| - | Date: |
| - | - Fri, 17 Jun 2016 08:02:19 GMT |
| - | X-Locomotive-Account-Email: |
| - | - admin@locomotivecms.com |
| - | X-Locomotive-Account-Token: |
| - | - HyqKxyBLmEH9x_GzYnWY |
| - | X-Locomotive-Site-Handle: |
| - | - gentle-desert-808 |
| - | Content-Type: |
| - | - multipart/form-data; boundary=-----------RubyMultipartPost |
| - | Content-Length: |
| - | - '13286' |
| - | response: |
| - | status: |
| - | code: 201 |
| - | message: Created |
| - | headers: |
| - | Content-Type: |
| - | - application/json |
| - | Etag: |
| - | - W/"7c95d9f403b5d529f37c600a19748ab8" |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | X-Request-Id: |
| - | - eda82291-ebd5-4d7b-a899-250f8802bcd6 |
| - | X-Runtime: |
| - | - '0.066004' |
| - | Content-Length: |
| - | - '339' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"_id":"5763ae8b87f6437d12223c49","created_at":"2016-06-17T08:02:19Z","updated_at":"2016-06-17T08:02:19Z","content_type":"image","local_path":"images/top.jpg","folder":"images","checksum":"3f6a15f2ce89235092ae25b125084dd7","filename":"top.jpg","url":"/sites/5763ae8287f6437d12223b8f/theme/images/top.jpg","size":"12.4 |
| - | KB","raw_size":12697}' |
| - | http_version: |
| - | recorded_at: Fri, 17 Jun 2016 08:02:19 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:25:01 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -22704,23 +22360,23 @@ http_interactions: |
| ZGF0YTsgbmFtZT0idGhlbWVfYXNzZXRbY2hlY2tzdW1dIg0KDQo0NzNmNjM0 | |
| MDUzMTcyYTY1NmIzOGY0ZDc5MWQyOTRjOA0KLS0tLS0tLS0tLS0tLVJ1YnlN | |
| dWx0aXBhcnRQb3N0DQpDb250ZW50LURpc3Bvc2l0aW9uOiBmb3JtLWRhdGE7 | |
| - | IG5hbWU9ImF1dGhfdG9rZW4iDQoNCkh5cUt4eUJMbUVIOXhfR3pZbldZDQot |
| + | IG5hbWU9ImF1dGhfdG9rZW4iDQoNCjJBOWlUUXlvQUNIYkE0ZUFWTENIDQot |
| LS0tLS0tLS0tLS0tUnVieU11bHRpcGFydFBvc3QtLQ0KDQo= | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:19 GMT |
| + | - Thu, 09 Mar 2017 14:25:01 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| @@ | @@ -22733,21 +22389,21 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"1c83f32158efbf98533332627d819b49" |
| + | - W/"bbe1171dfc7564b3bda491ef4e79c088" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 467fd18c-a24b-4e3f-98fc-c7f655ea7c2a |
| + | - 167cb21f-00d9-4346-a39e-7f9e6b0770a9 |
| X-Runtime: | |
| - | - '0.044432' |
| + | - '0.046282' |
| Content-Length: | |
| - '353' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8b87f6437d12223c4a","created_at":"2016-06-17T08:02:19Z","updated_at":"2016-06-17T08:02:19Z","content_type":"font","local_path":"fonts/chunkfive.otf","folder":"fonts","checksum":"473f634053172a656b38f4d791d294c8","filename":"chunkfive.otf","url":"/sites/5763ae8287f6437d12223b8f/theme/fonts/chunkfive.otf","size":"10.7 |
| + | string: '{"_id":"58c165bd87f64357b6203447","created_at":"2017-03-09T14:25:01Z","updated_at":"2017-03-09T14:25:01Z","content_type":"font","local_path":"fonts/chunkfive.otf","folder":"fonts","checksum":"473f634053172a656b38f4d791d294c8","filename":"chunkfive.otf","url":"/sites/58c165b387f64357b620338d/theme/fonts/chunkfive.otf","size":"10.7 |
| KB","raw_size":10916}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:19 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:25:01 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -22768,23 +22424,23 @@ http_interactions: |
| IG5hbWU9InRoZW1lX2Fzc2V0W2NoZWNrc3VtXSINCg0KZWRiMjkzMDI4Zjlj | |
| MDdmMmQ2OTJkMDY2Y2Q4YTQ1OGENCi0tLS0tLS0tLS0tLS1SdWJ5TXVsdGlw | |
| YXJ0UG9zdA0KQ29udGVudC1EaXNwb3NpdGlvbjogZm9ybS1kYXRhOyBuYW1l | |
| - | PSJhdXRoX3Rva2VuIg0KDQpIeXFLeHlCTG1FSDl4X0d6WW5XWQ0KLS0tLS0t |
| + | PSJhdXRoX3Rva2VuIg0KDQoyQTlpVFF5b0FDSGJBNGVBVkxDSA0KLS0tLS0t |
| LS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0LS0NCg0K | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:19 GMT |
| + | - Thu, 09 Mar 2017 14:25:01 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| @@ | @@ -22797,21 +22453,21 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"a578f21e9553a6ad75cded018d8471bb" |
| + | - W/"475170ccf61971ccc5fdcb8e2b4d7b97" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 5244452b-83c4-4d97-9fe1-338f72aaa7f4 |
| + | - 72a723de-246c-4724-ae0b-65cf0939fc87 |
| X-Runtime: | |
| - | - '0.055801' |
| + | - '0.067156' |
| Content-Length: | |
| - '348' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8b87f6437d12223c4b","created_at":"2016-06-17T08:02:20Z","updated_at":"2016-06-17T08:02:20Z","content_type":"image","local_path":"images/nav_on.png","folder":"images","checksum":"edb293028f9c07f2d692d066cd8a458a","filename":"nav_on.png","url":"/sites/5763ae8287f6437d12223b8f/theme/images/nav_on.png","size":"115 |
| + | string: '{"_id":"58c165bd87f64357b6203448","created_at":"2017-03-09T14:25:01Z","updated_at":"2017-03-09T14:25:01Z","content_type":"image","local_path":"images/nav_on.png","folder":"images","checksum":"edb293028f9c07f2d692d066cd8a458a","filename":"nav_on.png","url":"/sites/58c165b387f64357b620338d/theme/images/nav_on.png","size":"115 |
| Bytes","raw_size":115}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:20 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:25:01 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -23002,24 +22658,24 @@ http_interactions: |
| c3Bvc2l0aW9uOiBmb3JtLWRhdGE7IG5hbWU9InRoZW1lX2Fzc2V0W2NoZWNr | |
| c3VtXSINCg0KOTNjMjkxMTI4N2E1NzU0YmVkNjVhMDI4YzZhYTRhN2MNCi0t | |
| LS0tLS0tLS0tLS1SdWJ5TXVsdGlwYXJ0UG9zdA0KQ29udGVudC1EaXNwb3Np | |
| - | dGlvbjogZm9ybS1kYXRhOyBuYW1lPSJhdXRoX3Rva2VuIg0KDQpIeXFLeHlC |
| - | TG1FSDl4X0d6WW5XWQ0KLS0tLS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0 |
| + | dGlvbjogZm9ybS1kYXRhOyBuYW1lPSJhdXRoX3Rva2VuIg0KDQoyQTlpVFF5 |
| + | b0FDSGJBNGVBVkxDSA0KLS0tLS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0 |
| LS0NCg0K | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:20 GMT |
| + | - Thu, 09 Mar 2017 14:25:01 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| @@ | @@ -23032,21 +22688,21 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"d3f737b1ede6cab22dc717cc3c457e7f" |
| + | - W/"ba34b32624f9ba38a000e12a03b3b0f9" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 43edc5b8-5b49-4e71-9a4d-f9552b639930 |
| + | - bd6387c9-d1ba-4cd0-8ef0-5b11da3eb07d |
| X-Runtime: | |
| - | - '0.064416' |
| + | - '0.074921' |
| Content-Length: | |
| - '361' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8c87f6437d12223c4c","created_at":"2016-06-17T08:02:20Z","updated_at":"2016-06-17T08:02:20Z","content_type":"image","local_path":"images/photo_frame.png","folder":"images","checksum":"93c2911287a5754bed65a028c6aa4a7c","filename":"photo_frame.png","url":"/sites/5763ae8287f6437d12223b8f/theme/images/photo_frame.png","size":"7.6 |
| + | string: '{"_id":"58c165be87f64357b6203449","created_at":"2017-03-09T14:25:02Z","updated_at":"2017-03-09T14:25:02Z","content_type":"image","local_path":"images/photo_frame.png","folder":"images","checksum":"93c2911287a5754bed65a028c6aa4a7c","filename":"photo_frame.png","url":"/sites/58c165b387f64357b620338d/theme/images/photo_frame.png","size":"7.6 |
| KB","raw_size":7780}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:20 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:25:02 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -23091,24 +22747,24 @@ http_interactions: |
| dGlvbjogZm9ybS1kYXRhOyBuYW1lPSJ0aGVtZV9hc3NldFtjaGVja3N1bV0i | |
| DQoNCjg5ZTAyNzUxODVlNjYxNjM5ZmIxNDEzMDQxMDg0M2I2DQotLS0tLS0t | |
| LS0tLS0tUnVieU11bHRpcGFydFBvc3QNCkNvbnRlbnQtRGlzcG9zaXRpb246 | |
| - | IGZvcm0tZGF0YTsgbmFtZT0iYXV0aF90b2tlbiINCg0KSHlxS3h5QkxtRUg5 |
| - | eF9HelluV1kNCi0tLS0tLS0tLS0tLS1SdWJ5TXVsdGlwYXJ0UG9zdC0tDQoN |
| + | IGZvcm0tZGF0YTsgbmFtZT0iYXV0aF90b2tlbiINCg0KMkE5aVRReW9BQ0hi |
| + | QTRlQVZMQ0gNCi0tLS0tLS0tLS0tLS1SdWJ5TXVsdGlwYXJ0UG9zdC0tDQoN |
| Cg== | |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:20 GMT |
| + | - Thu, 09 Mar 2017 14:25:02 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| @@ | @@ -23121,21 +22777,21 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"6575d8a603bb9510984789042daf1de6" |
| + | - W/"2226cb8ed223e095c796993b7bddaec5" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 5555c76c-6064-41be-967f-8014ddc876ba |
| + | - 27a93389-995f-4ea2-925c-7eafde3465ae |
| X-Runtime: | |
| - | - '0.066827' |
| + | - '0.078923' |
| Content-Length: | |
| - '338' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae8c87f6437d12223c4d","created_at":"2016-06-17T08:02:20Z","updated_at":"2016-06-17T08:02:20Z","content_type":"image","local_path":"images/sep.png","folder":"images","checksum":"89e0275185e661639fb14130410843b6","filename":"sep.png","url":"/sites/5763ae8287f6437d12223b8f/theme/images/sep.png","size":"1.18 |
| + | string: '{"_id":"58c165be87f64357b620344a","created_at":"2017-03-09T14:25:02Z","updated_at":"2017-03-09T14:25:02Z","content_type":"image","local_path":"images/sep.png","folder":"images","checksum":"89e0275185e661639fb14130410843b6","filename":"sep.png","url":"/sites/58c165b387f64357b620338d/theme/images/sep.png","size":"1.18 |
| KB","raw_size":1213}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:20 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:25:02 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -23144,226 +22800,677 @@ http_interactions: |
| string: !binary |- | |
| LS0tLS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0DQpDb250ZW50LURpc3Bv | |
| c2l0aW9uOiBmb3JtLWRhdGE7IG5hbWU9InRoZW1lX2Fzc2V0W3NvdXJjZV0i | |
| - | OyBmaWxlbmFtZT0iY2h1bmtmaXZlLmNzcyINCkNvbnRlbnQtTGVuZ3RoOiAy |
| - | NzkNCkNvbnRlbnQtVHlwZTogYXBwbGljYXRpb24vb2N0ZXQtc3RyZWFtDQpD |
| - | b250ZW50LVRyYW5zZmVyLUVuY29kaW5nOiBiaW5hcnkNCg0KQGZvbnQtZmFj |
| - | ZXtmb250LWZhbWlseTonQ2h1bmtGaXZlUm9tYW4nO3NyYzp1cmwoJ2NodW5r |
| - | Zml2ZS13ZWJmb250LmVvdCcpO3NyYzpsb2NhbCgn4pi6JyksdXJsKCdjaHVu |
| - | a2ZpdmUtd2ViZm9udC53b2ZmJykgZm9ybWF0KCd3b2ZmJyksdXJsKCdjaHVu |
| - | a2ZpdmUtd2ViZm9udC50dGYnKSBmb3JtYXQoJ3RydWV0eXBlJyksdXJsKCdj |
| - | aHVua2ZpdmUtd2ViZm9udC5zdmcjd2ViZm9udHdsWjVlYzh2JykgZm9ybWF0 |
| - | KCdzdmcnKTtmb250LXdlaWdodDpub3JtYWw7Zm9udC1zdHlsZTpub3JtYWx9 |
| - | DQotLS0tLS0tLS0tLS0tUnVieU11bHRpcGFydFBvc3QNCkNvbnRlbnQtRGlz |
| - | cG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0idGhlbWVfYXNzZXRbZm9sZGVy |
| - | XSINCg0KZm9udHMNCi0tLS0tLS0tLS0tLS1SdWJ5TXVsdGlwYXJ0UG9zdA0K |
| - | Q29udGVudC1EaXNwb3NpdGlvbjogZm9ybS1kYXRhOyBuYW1lPSJ0aGVtZV9h |
| - | c3NldFtjaGVja3N1bV0iDQoNCmIzYWQzYmZhMmFmZjlkZTkxM2JmNDJmODRh |
| - | ZDFmZWNmDQotLS0tLS0tLS0tLS0tUnVieU11bHRpcGFydFBvc3QNCkNvbnRl |
| - | bnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0iYXV0aF90b2tlbiIN |
| - | Cg0KSHlxS3h5QkxtRUg5eF9HelluV1kNCi0tLS0tLS0tLS0tLS1SdWJ5TXVs |
| - | dGlwYXJ0UG9zdC0tDQoNCg== |
| - | headers: |
| - | User-Agent: |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| - | Accept: |
| - | - application/json |
| - | Accept-Encoding: |
| - | - gzip,deflate |
| - | Date: |
| - | - Fri, 17 Jun 2016 08:02:22 GMT |
| - | X-Locomotive-Account-Email: |
| - | - admin@locomotivecms.com |
| - | X-Locomotive-Account-Token: |
| - | - HyqKxyBLmEH9x_GzYnWY |
| - | X-Locomotive-Site-Handle: |
| - | - gentle-desert-808 |
| - | Content-Type: |
| - | - multipart/form-data; boundary=-----------RubyMultipartPost |
| - | Content-Length: |
| - | - '871' |
| - | response: |
| - | status: |
| - | code: 201 |
| - | message: Created |
| - | headers: |
| - | Content-Type: |
| - | - application/json |
| - | Etag: |
| - | - W/"37b74c6a304028525eda715dfc730bf0" |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | X-Request-Id: |
| - | - 7422e51c-cce5-4ed8-8bd6-a2d7f85184a9 |
| - | X-Runtime: |
| - | - '0.041102' |
| - | Content-Length: |
| - | - '359' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"_id":"5763ae8e87f6437d12223c4e","created_at":"2016-06-17T08:02:22Z","updated_at":"2016-06-17T08:02:22Z","content_type":"stylesheet","local_path":"fonts/chunkfive.css","folder":"fonts","checksum":"b3ad3bfa2aff9de913bf42f84ad1fecf","filename":"chunkfive.css","url":"/sites/5763ae8287f6437d12223b8f/theme/fonts/chunkfive.css","size":"279 |
| - | Bytes","raw_size":279}' |
| - | http_version: |
| - | recorded_at: Fri, 17 Jun 2016 08:02:22 GMT |
| - | - request: |
| - | method: post |
| - | uri: http://localhost:3000/locomotive/api/v3/theme_assets.json |
| - | body: |
| - | encoding: UTF-8 |
| - | string: "-------------RubyMultipartPost\r\nContent-Disposition: form-data; name=\"theme_asset[source]\"; |
| - | filename=\"application.js\"\r\nContent-Length: 84\r\nContent-Type: application/octet-stream\r\nContent-Transfer-Encoding: |
| - | binary\r\n\r\n(function(){$(document).ready(function(){return alert(\"hello |
| - | 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\nHyqKxyBLmEH9x_GzYnWY\r\n-------------RubyMultipartPost--\r\n\r\n" |
| - | headers: |
| - | User-Agent: |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| - | Accept: |
| - | - application/json |
| - | Accept-Encoding: |
| - | - gzip,deflate |
| - | Date: |
| - | - Fri, 17 Jun 2016 08:02:23 GMT |
| - | X-Locomotive-Account-Email: |
| - | - admin@locomotivecms.com |
| - | X-Locomotive-Account-Token: |
| - | - HyqKxyBLmEH9x_GzYnWY |
| - | X-Locomotive-Site-Handle: |
| - | - gentle-desert-808 |
| - | Content-Type: |
| - | - multipart/form-data; boundary=-----------RubyMultipartPost |
| - | Content-Length: |
| - | - '682' |
| - | response: |
| - | status: |
| - | code: 201 |
| - | message: Created |
| - | headers: |
| - | Content-Type: |
| - | - application/json |
| - | Etag: |
| - | - W/"ce4ebc4b6636f6f1ead19550deedd30c" |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | X-Request-Id: |
| - | - f4891539-ccd2-422b-81d2-ba5bb98d63e3 |
| - | X-Runtime: |
| - | - '0.039146' |
| - | Content-Length: |
| - | - '378' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"_id":"5763ae8f87f6437d12223c4f","created_at":"2016-06-17T08:02:23Z","updated_at":"2016-06-17T08:02:23Z","content_type":"javascript","local_path":"javascripts/application.js","folder":"javascripts","checksum":"dafcc4a2f059c53e47bf8d7ea4dd1e11","filename":"application.js","url":"/sites/5763ae8287f6437d12223b8f/theme/javascripts/application.js","size":"84 |
| - | Bytes","raw_size":84}' |
| - | http_version: |
| - | recorded_at: Fri, 17 Jun 2016 08:02:23 GMT |
| - | - request: |
| - | method: post |
| - | uri: http://localhost:3000/locomotive/api/v3/theme_assets.json |
| - | body: |
| - | encoding: UTF-8 |
| - | string: "-------------RubyMultipartPost\r\nContent-Disposition: form-data; name=\"theme_asset[source]\"; |
| - | filename=\"common.js\"\r\nContent-Length: 27\r\nContent-Type: application/octet-stream\r\nContent-Transfer-Encoding: |
| - | 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\nHyqKxyBLmEH9x_GzYnWY\r\n-------------RubyMultipartPost--\r\n\r\n" |
| - | headers: |
| - | User-Agent: |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| - | Accept: |
| - | - application/json |
| - | Accept-Encoding: |
| - | - gzip,deflate |
| - | Date: |
| - | - Fri, 17 Jun 2016 08:02:24 GMT |
| - | X-Locomotive-Account-Email: |
| - | - admin@locomotivecms.com |
| - | X-Locomotive-Account-Token: |
| - | - HyqKxyBLmEH9x_GzYnWY |
| - | X-Locomotive-Site-Handle: |
| - | - gentle-desert-808 |
| - | Content-Type: |
| - | - multipart/form-data; boundary=-----------RubyMultipartPost |
| - | Content-Length: |
| - | - '620' |
| - | response: |
| - | status: |
| - | code: 201 |
| - | message: Created |
| - | headers: |
| - | Content-Type: |
| - | - application/json |
| + | OyBmaWxlbmFtZT0idG9wLmpwZyINCkNvbnRlbnQtTGVuZ3RoOiAxMjY5Nw0K |
| + | Q29udGVudC1UeXBlOiBhcHBsaWNhdGlvbi9vY3RldC1zdHJlYW0NCkNvbnRl |
| + | bnQtVHJhbnNmZXItRW5jb2Rpbmc6IGJpbmFyeQ0KDQr/2P/gABBKRklGAAEC |
| + | AABkAGQAAP/sABFEdWNreQABAAQAAABQAAD/7gAOQWRvYmUAZMAAAAAB/9sA |
| + | hAACAgICAgICAgICAwICAgMEAwICAwQFBAQEBAQFBgUFBQUFBQYGBwcIBwcG |
| + | CQkKCgkJDAwMDAwMDAwMDAwMDAwMAQMDAwUEBQkGBgkNCwkLDQ8ODg4ODw8M |
| + | DAwMDA8PDAwMDAwMDwwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAz/wAAR |
| + | CAC0BLADAREAAhEBAxEB/8QAhwABAQEAAwEBAAAAAAAAAAAAAAECAwQFBwgB |
| + | AQEBAQEBAQEAAAAAAAAAAAABAgMGBAUHEAEAAQICCgIBBAECBgMBAAAAAREh |
| + | UWGBEwQUlFXVBgcYMQJxQZGhUhKxFfDB4QMFCNHxItQRAQEBAAEFAQEBAQAA |
| + | AAAAAAARARJRodEDFQIhMUH/2gAMAwEAAhEDEQA/APlj3b+WYI1UVc1ifmqu |
| + | mF5utP8ABpf4tWqsxWqL8tZrTNGs1rMZVpFUVVoVrGZ+FrWZ/SKBp8is1uqx |
| + | qpUFChRxTFZqzX0/n+YzKt4fqDUfJjn+9/jkacUBZkGaqFZUKixEaKhv8Khh |
| + | UaZRo/AsPlFAVAQPwCUn9QWBnVHP9OSBx1KxE0NM/K1RnfzFRiLCM61Es6xu |
| + | KjnuLE/DGs7jWLLG4qMbhCMbjXymozMRM2Z1c2H+JV5MzEx+iNfnc0rZrNN/ |
| + | P9PmRc3ZGJK7/ko1i8v4zMVV0z9E2Vc2lGs1pFqYytdMgVVaTBaCiSVvEK0s |
| + | VMZ/WqrnV0DKXGsKI1upMC5oFKQhv6Wysbq0KzTQUCgLYlE1c/SxBWd1qkFS |
| + | pkUUrLNKVSt0r+hRqLrWdVKlSlSlSnxBVqzRKmU/AbolQgqbq1KyJumYJV/W |
| + | dFtglY/qTP6pTOhWsJumfzUozVqI1VjP9krOtxRKxuqM1EpUlK3jNCtVqIsV |
| + | z3V/RalSnyVqs0la1ShVwWqirQKDRMpVw+fkqpTSVaqVKFVKM7pT4SgUEZoJ |
| + | uglUqVJKZpUpuNLWUKotD/RauC1vEn/Rc1vGCumMzP8A9Fdfz/WJisU/Za6/ |
| + | j9cdccxiy+z8/rNej8M15XNFWhVxJhW81mlGq0sTH6tZpuLNK1hvDEqrcKrj |
| + | WYzM5tY2zVqtxr5VYirhWRpBrEotEuogqiFQhPwLmf1j5qOzI3QpmtRIx+sa |
| + | q05QqJCosAgLBTMJRrEWmhSIlbiCpWMRqKiAHwqlZwQX8ogJurRYx+v10Fjn |
| + | pWcU0iINxijP6aqjlFRncWJZ3GdxtnXPcKs6xuLEs6zuNQzrGqlc9xpmsMfb |
| + | 5Zrf5/xKyEw/yn9Q4oVrM0Wrmf0lWsqLmtVn/Vcbo0uJP7rXTNPy0VJhWs1k |
| + | azVpW7WJukqVBQazRFsFqb/itVhpKzUkq5qJWhN1cQqaq1FoVmrcqfwKVqEr |
| + | O6WKVmiVa18fBWf9ZK2pWd0kpgValEq5+moWsaFKJUqFWlEORQKom6gyJQQo |
| + | m6uCUPhmp/rUXjBGP1+pqUTdWrRmpyWkFZp+ETdap/1K51mUq5qI3n6hYXdW |
| + | i1jdLlM0KtBvNYla3mi1Si0qWgrWHyVcKJWgAoFEZqglEoVKhVmrUqVNVKQK |
| + | hcqNUkrNT4WjXytRla0flaotaxJgzW8Y/C11/KDpjHwtdc/qLSPQmK/q5157 |
| + | P0lKf/JVrMtVrArpjEtZrpiNNoua3mVf8m804J9mmvzjKukKtY1CvwuabitC |
| + | VkU+VVBcLqqAtRCxSJJWvylaFbTEWsyN5oDauWi1AoFIpRBrEGsUSJMjeYxM |
| + | zX5GoT9pCIqiLFqESsizFrIzuLX/AKiRqJwGd/K1GIDO4CQRFiUTcWJGdxqr |
| + | LG4fDLGtRMM6zuNVZc9IlnXPW6wxrnolY1qGdYYrWZlmumfnYVSs7i0UpYXP |
| + | 1rMo6ZqTNv8ARqt5iVmFzVlWZq1iSIrVPyq0arSWVtKLVpRalJKYlFrVQqqJ |
| + | UKbq0KVorG6FTNRK1UpBVzShStUKzVGaFBKQKQKZgVP1/AqZpRK1VWsbqFM0 |
| + | StbtCpmzQzV/WhWSoUKBQSh8lQ/5JQhKv6yFU3TMRmtbArNWlmazutQlZ1U3 |
| + | WP8AESosRMom/puIp+UrnulClSYSmalE5N1ClbiFrG6klaxKLV3UVrNPyNZr |
| + | M2K6ZtZutVKFaCrgVQAoJQTdXBKhSUpRKfxUZAurZKzdWkSVKlIxKKVSi1Kl |
| + | 1rSaSgtWItawla6Y45Wuv5CtpP4qtaxiaFdc3ceizXmmZG8YVsXFzVmGsazd |
| + | 1iYbzXTNSVdvz/WGsdITNbN5qZkSqun5xm6uuZixNPlpNxqtVrMhdaFxWRov |
| + | iUW5QrOC1CuRRmZK3mIVrMBf8KKcgqLVaQEFQFK5AVGkmn6i5hcXGFbSwoKC |
| + | 4ABAUE1YGf1jVvmPlGU/yU38rE5jO41pRIlcxOKjO4VRmNVZ1jcWrOsbixP6 |
| + | M6xuNxMM657gxuue41Esa57iyjnq/ojDLm6clSLzxa5n9SYyVrIC3EvirWbi |
| + | UVrNRrNXdVtkWqLVKVVrNI+Fq0/K1ChVzUotWlCrShSlChQrOqUpQZpZKUsV |
| + | aJShU0qU/wBS6VrMzC6ValCrShUzWoXNc/1obqYaEpurRazUoVRKZqVK0VKi |
| + | 3KyXKqJVxYKi0SpVpQpUlN1fz/rKVvRmlKFZ3WoSs7qpWN1UZSgzViEqbrcJ |
| + | XPdVKyiUVKVGa1ShVqtZrOszCVvNIhqmp9puta/LJW8UrWM0j9Ct5rMrWsFr |
| + | WIVoKBUEphRmqJRU3UKJUqpU/olQKKlRP3KqrUCkpP5aoyVtGlwK1iStbxmc |
| + | yumItbRauakwN/n9a705I89+dW0x/wAw/wAZmM2sazWVzW4NVr8pLWN5rDTt |
| + | +djEx+7WO2aitszN2nT85kKwtaiWazV3GvxKsbi1lUSpVxIK1q3xKhfEoVnI |
| + | qFZWqyjeairQpilXRamJdK3kVrNZ/WC1krJVKytWJMzJTEkbw0gkq0yKooKF |
| + | QWkKJWsKFUolCi1FKzuJVUzC6VdwgZ3GoRn9Y0lc9xayzrG4tWdZ3GmXLcWJ |
| + | lnWNxq7G65bjUSzrnuNRRnXLcGd1Mz+jNXfyIxCwIFBrFoVvMZVvNRc1UbzQ |
| + | WrgrQNYi01brUVaiFaxK5lValMWqVNFrO6FQSgUCpRKuahUoLmwQ5AVaCckF |
| + | rdErnulClKQUpYpSwUKM0grVKVKi0KBQpBSiUUqVUrLMputYlGa1VKlaolTd |
| + | LJWahWd1aJWd1aM7rLUQlZ3QrAlRaJUKQlUKtClShTP6o2zMFVKQtXEVvE/l |
| + | a0fJW8ZmRvE+VrSaBT4KqfINJURKqpQSoXZqLRKi0gqFkqFkqlYKFc6CxLLV |
| + | Sv6Lmm4aFpiLW8xFrQua1mJ/JW8ZWt4i1oWrj7xV9VeJzCclrWYzk1mrP7Ua |
| + | zXVmstZrpmFW8bzGKt47ZjM0n5hrNdfyzSNLWa6f64/tSq19Hrz+M/lrNam/ |
| + | 8KNNZ+lhc1P1lb0rXEWiFWqVKFAohVxKJWzStUKuaUXNXWZKuLRcXkLWS60R |
| + | apcqotUVrEDEK3gVQqlCqFUSqUUqKUCnwipUFWsnwH+lcmajRWNxSuetQzrn |
| + | qwzrnuNRLG657jUMa4/rGoY3XL9Y3Esa4/rGoY1y3FY1nMKMaUoyU0hcA/hU |
| + | gq4tRVqN4tRWs1KLmtI1mtBWs0K1RrNZ0WshShWs1CrmqVndIKzrV5KyUSlQ |
| + | q1UrNSU3WvzoVd1Ss7oVBKQKL8FYtK/BSCVApQoFUKBVoU0KlEpQqhUoVKJQ |
| + | Z3WsW2LNEsUaiYZZ1a5FY0qlZKpU1aJWNaiGd1jV/lN1lUQulQt+UomhKLSn |
| + | 6HJUlaYmlHTEt/1XNaZmcFreYjVbxFrWMzmV0xJyG8ZmFroVKpZFKoKUgm6F |
| + | vyzQRF/P7MohSLVEhdCAkCrF0CpbAqxNDWashVaRF5NYzM0Wt5iTJjeYlWq3 |
| + | mHz+tFrWYz+FrWM3K65HofhK8vD/AFWqmbWa0kt1v84y1mumMy3mumYzM6Ws |
| + | dsxKt5rpjNms1vHHMXla+n8f4zRa6JePiWqStR9pwKzv4bhquW4f4yvJCmSU |
| + | pReSFJOQUk5BRN/TWCVSi0pRaVmpWilbrVz9Ggq5o1mlKSvIS61SklXEWqli |
| + | tYllaSqrhcrSXW4qaUawviKXArKm4f5Gpi1KEzBVxLFaBnSuYuYtcZRnisTH |
| + | /VGdxalc9xqjNc9airO6561Rjdc/01pY3XL9Y1E5Ma5fr8tf5TgxrluNf5Sx |
| + | rluLWWKzuLWWXPcWqIIhQChQp/8ASrWVao1VFq4K1moVrNKFWpRa1Si0pRag |
| + | tZCrRKUKKVjdKFSlClLJSqVKJUzUStVblQocilEpShSqbrOalEzV3VKyGaul |
| + | CoFQKtKHIpRKUocilClSxVoUXSVkSqylazVSrRKzVolTdWiVjRKytJSs61Sf |
| + | 1lKzrVY/VlkroRnSuhKyIKlMSyVpNJSAuYi1vMSi1vMRa3jM5ma3mJ/xVqt5 |
| + | jP5la3mJ/BW8xEreC1SxWkSqJSL/ABCUh+I0pupBKkWzO6kEotUqQugaRE0i |
| + | lZFzEqVrifiVXGarW8/GEfbFca38MzMq3+MyIvJrgNUzEmFreYlVVJK6fnMe |
| + | gV5dJn91xcScYVvMZmrWa6ZiVbxqMzLea6/lmZhrNdvzlYq3n6dc/I3mrmMT |
| + | Ra7fnIi1sKtKLVrUNVx/X81aHJmrQ5FKHJKlDkUKJJVqXj4qVatZClZwVaaC |
| + | tUqtTMK/utWpXIUqtMSsrWkutVNK1rEK0llq0K0lFrVCqUWrUpkVRaJpKu6u |
| + | kpS5UKLVolKFKklXDRpSppQqVqGa5/puITdctaozusa1DG6561ZjdctaiWN1 |
| + | y1pjdctW7G65atWWVrLGs7i1Ssbi/wCRU4n+UFTiv+UFOKTlJWsxFzVkFonw |
| + | tXCytItC5WqkTMKtX/LID/LGAWsFRaxiVCxQKlKFTdKHJmlDkVaM7pShWaUK |
| + | VaJSlClWhUpRORQqUoVKUSlKFKtMilKFKhVNBRLlEKtUqVKFWhSkJSrpKJRK |
| + | pQoWxShZELIRaozq1yoM6Vn9GUiwlZ1baUrK2Z5JFr+xWdGaQpiULYIRKjUS |
| + | w1malZK3mIrWYlZVvMZ+M1rpmJ/xQrWYz+FdMwurWfln8LW4mkrUK5IsKiwS |
| + | rCuLNSLWqJBCFUOJdEi3EhdKsEpMFqwKsSSrmJ8fJWpSZiVq5+dxmw3iXaq5 |
| + | kS2I6YlaLmrxXS1SMzOS1rPyzKVv85Ho/F4aeXzEmVzW8/LM0azWsxm7WOmY |
| + | lcWsahVvG8Ylp1/Osyrt+WWs10xGq1iUWrSi1aLSrH6Ln6Y/WL8LyZm6JyIt |
| + | SpFKgVKUKUoVaLSoVamhatCrUWrSi1aUWrUotapRatShVqTRa1Sy1qpZatSZ |
| + | wgaxm6tYVVTQKVAqCaFVaiFiqWKFionylazSiUqwlZ1quSVjcai5uuWqzusa |
| + | 1EMbrnrUQxuuWtR+WN1z1qJY3XLcWrnusbjUM7rnq1Z1nUrCItYRCxQKC1RR |
| + | ariJZaFlrRbEoLRCqUKUoUoUpQpShUpQqVpKzTSVN1b4lRUqBUKoq1E0rBUK |
| + | 5IH+WQFZ/UNKoyf5ClZBLgXKFyqUkoUkof4lCkFUsUEqi0RKuJfEpCmlKLQo |
| + | USoqUKwlQqlRazPwiKjOn5ZSFhmLWf0QionFCrxEpBK1iDWYK1mM/hWsT5+S |
| + | t5iK3mItbzE+VbzGf5K3ifwtbxLFaKwlVK4JVh+UqwqEE0i/H6s7pEZpq1Eh |
| + | WUpFuicUKcTSESw1hZVhZViVFw+VajN1axLLWsxKq1h8jWJeCrEWtZj0KxLb |
| + | zOYk20q1mMV/RW8xGm8wazWsZr/Lea1EmWs1vMZn+FrtiNZrWJRa1iUarVKF |
| + | KFKFAqLQqXV+Cpv9F5Mbi0OSJReQtMyiXWqXKUWrQq1Fqi1ai1UutUuVpKLW |
| + | sT/FeTRReSpTM5NJZeTVLFWpWFq0rBVpWDkFYOSlsV5BbI5FSxyE0HJY1Y5M |
| + | p+Eq4VKKlQZ3UrSVy1bpusbjX/6xY3XPcVjXPcaifwzrnuNxOTGue4QzrO41 |
| + | WWNc9xqqaxuFUTiIi2KFChcIVCJVqhZakUqxKLVLlC60KiLXJKhWMAKhq1gq |
| + | atIxSs0pBUKHIWk4lZKJQoVCiUKFChUXQlKUyKlEpVoUqaSgULAWBKilZFKy |
| + | ES5VhQoWxKsSxQRYtxS4F8UqFMyhYoM1D8JRUSLXArMPhKRUqbhVKkEqQqVY |
| + | MkKhEqVYVK1n5QreYVVqMzSCt5iV0LW8xmqt5iSZreflP8lbzCsFazEmRrMZ |
| + | sNQqNRPn5SrFqyQuiCG4v4EhWU1YIzAIWCBVhYIlYKuFVrUKhGayrWYFWJ8K |
| + | 1iVVrBaqXGitBcdz4dHnYfP5Gol/y1mtZiLmtRNLeNYl2saxP+KrW8Z0rXTC |
| + | 7VaTQtVLLVFotyhoKhSCoUgqVblKJUotQKkUpCq0NBRNC8lK5LVqVjAqlmqt |
| + | SuRVzUrktaLrWkutWppWtVKHJc1F5NFlq1LFaqFXBa0XKpdatSmRRdBUQpV0 |
| + | FKaClEpQqVaJUpSU3UrSVjVZ3XPVZ3WdxqGd/TnrTG656sM7rGtMbrGqzWNV |
| + | KzuFUrO4tRIACQCKqQFQCi0NJQuUW5QqVCxQsVFsVCkHJCmZUglSLcqFypC4 |
| + | LdELilxC+KIFAopQELpVChQoJRCqVKFZFS+IApoKsEWAsQIBApBKRfxBSH5l |
| + | KRaxiiRPkpFqynEgIVzRIRiiRReKJTfytUTig1n5Ki8UGsxKjWYlVb4oNZjK |
| + | umYTcrWYzVW8xBvMT+VqxLlagVYMqWAgIIsISotUIlU0iokAgAACC4NY1AWI |
| + | ERWsCtJRaqVVYlZRQadyrpmvwuJVpYhSIrURqrEs1WsxFreYjWa2LVFoi1TQ |
| + | UKQVFKBUCoWKi6SofsUNC1CxQpBQ0rVP2KFFqoVqpRapTNaItbxFqotVCtYa |
| + | FrSXWqXK0mlatNK1U0lWmlatNJSmkq0vitKXxSpQpSmZSmkqVdKUppSpVSs1 |
| + | Wazqs7rOrRndZ1qGd1z1Wd1jcVnWdxUY3FuyzuKjMEZ3FqJxKicSocQSBSBS |
| + | KUgtSBQWoVKQSopU0WhZKhYqLYqLSUoaSoFRboFZELlIJUWpQqVC+BQrKULl |
| + | C+KLmAsQpCgQoLDSEBYgsCkNJViFUKQKogaQLYhCoQKQSkWqEBIVSkRCLVCF |
| + | RYIbhpCJUWFUWINQFzGarjpBVzGZG8xBvMFXMZ+PkreFRqJXEVK4CnyqxbQl |
| + | CrNWM/INIgERF3FGYCgAQACJpG4WUhWBYlQSsjWAoVYWWqyqu22/HiKQF4st |
| + | Y1CsrViaGqsSy1qCrD+Voi1RRSgVAqBUUqBUCi6SoaShfIoaFoFEWhoKpZaq |
| + | WwKqLWjQtXE0LWii1c1NJWqlM1rVRaqWWtYLVCqmhaoUCgUKLVpTIqCUKFDQ |
| + | VFpklBKlVKzVZ3UVKyrO6zozus60zusaM6m4qM7iozuCMxUSKiQqJCoQrC1I |
| + | pSBUFoFSGkpFKkCpApAqLZKhUqRSpAqQslSKVIFIqVIBCwkKwEKhCqJCoQqE |
| + | UpEuVYXKQuVTSUQqw0JSBVhpKsQqwKQKsNJSBViFIFWCUhUIVFhUSARUIkyh |
| + | AItckIlRYVZN/IESosKjUKixKjWYi43EqqwRrMYqreYXRqCrBVjNIK0JVgEE |
| + | WJUWECKilghWEItYRIVCJUIVkC4oESg1BSFBYAWBn8KpcVBpQdh0fmcWZlcX |
| + | PysSpEmQh8tVYirD+VILVRaGkU/laLoKgVARRAAZAilQKBQWhpKGlaBVRaoV |
| + | cRaqLWgqpZeSotaCqi1pFqhVRa0FAqi0CqFQKBQSgVBKKVldCUErKs1F0pus |
| + | jNZXQm6kXQzWYqVIJWYtUqQqJFvgUgVIWKkNJUi0CFBICQCKVIFSFipFslQq |
| + | UUqBUBCwi1hEhUIokNKBpKkNJSARaokKgVCJUIVzCFQgLAAUqEQqwKsAgLEF |
| + | hcWFwBYgsACglWBSFc0pCpViVyCEIkXSEBYlUWFUWAkKixBYVFiTI3n5RWoC |
| + | xBYkjWYlcRrCo1EFgLCosQWApYRa4IRLyLCiEEWKM7gABUEqBUVKjRVSF1IC |
| + | gQAFASwOVt8UFSJVSKpC8CwqoikFpDSVRaGgqQKKIaCoaCilQKkUqRFpAqLp |
| + | KQ0lBSBSIVYKAqLWkKppWqmlaoVpFqmha0hVP2WqXwKqFD9lqn7FU/Yon7FF |
| + | /YofsVAoJUNMFF0pUEqGhKi6EqL/AAiGlGVZqCVIqVIIkWxUhWEqQqEUSCJF |
| + | oJCgQKkNK1IpUhoKQsJFsJCokXQJC6JC4QKkVEgEKiQqJFqEBApApBKkUpCp |
| + | SFSkSpSFReJUIVRYlQhVVhUWFYFiVSrCpSFcyrCosSoQqLCoQrmLCoRKiwqh |
| + | CoQuUgUgEEWAsQWCEKhxK5oRKiwqNZ+UVuCrE/MhCo1BFjNBcSqtQqLgKVgV |
| + | Kz+iKUkRUUAqCVVSsskA3AZUWAQCAINAooAKFQSoQFgVW6tvji2CAkTQ1SLW |
| + | Ah+JWkLlIVyWkLCmlUNKELqglFWpDSVIqVBahYpDSJDSELhDQoaChoKC0iFW |
| + | BVFqxNBVFqi1U0laNKqi1UsVSxVTQtUKBVFofsVQqBQKCUNBUVKBUEqCUVKg |
| + | lRUSCVFRIIkKhFRICRUSFQhUSFVIVKkKlSLUqQSpF/gpDSJFEgiQ0BFqJASF |
| + | cxIaYCBUilSGgpCqVIVKQqUhUpAqQKQKQKRSkQpBKsAgLAIn8CwkWILFKQKs |
| + | QqwKsQICgQCAsLBAIBBFhUIgsKiwqixLosNIQrkqwuLEqiwqLEVYCwFiBAUs |
| + | LE0CoKUFWyBVVSoAsAEBFBFEBACoqVAqKlVUrIsQIpVgUEoAA1V1fNCokWoA |
| + | CkRUi1zCAAAQWoWxKGkqKItgLCFRItUSIoApSBSFykKrSJUpDStWBViFIi1Q |
| + | qi1oKJoWtBRFrQURaoUCqaSiaVoJVUqRNJRSgVBBSoJQSpFSoJQ0lItkqFUq |
| + | QKkWuSEKlSJoKRUqQKRbFSBSL8CQEhUIokBIXEBIqVIVKkWpSFSpxKlIVKkK |
| + | oQEgECpFsEBIBFqHEqHEqHFA4lRYVCFRYVDiVDigsEWAQFiCwUhVFgEK5ixK |
| + | 5hCosAhXIWAQCJpFgELCwCAsTShEsiwqLAICxBqFQgqwAFhUWJcWFEIWFiVV |
| + | YBAWAAoACVQKhC4CJFCAQFCgUQqhQRQAKCUFAWrs4wqJAQBayJCoQrGAQt+C |
| + | hpWi6SpC5QEgELFQ0iKhDQJFstIWxKQ0lSBSC0hfApC5SGgIKsCkS5VgVUWq |
| + | aSrEWqFUKItU0FVFqroKJoKBQKGgqmgqBRdCUQot0qGkoaQNKIWBa5IkLhBE |
| + | KgXKkVCCBWRC4QuJFvgJAFEAiokBIVyKQqVIVzKQrmJFqJEqJFCAkWwkAgEW |
| + | qJxA4gQCAQqEKhxKhECFRYBAIFWBSJUqwqUhUqwqlIVVYaQiaRYCwqhCuQQq |
| + | qw0hE0hAWFghWEpCpVhUpEqiwCILAICwCAsBYVgWJUIXFgELCwqqpcICwAFA |
| + | KglQgLBKsEoFBEUQAAAAABAAAUEAFoI1WMHWsQsUhSCoUAuJEupAIv8ACJBQ |
| + | ogUKi3KBUgtItkqQsVIaSkVUiBAIAAAAWAsqpbEAqirE0AWFLqpcIlyqLVNI |
| + | IKaQNJQKotAoJQKBQsVCxQslFKkEqwEEC4kKJRQBEBaIi0gICQKQqlItQiVK |
| + | RaiQKhUQviItxFCGgSAQsEBIaQiiQCAQCAQSpApApApApAqQQAhpFhpCAsQI |
| + | BFFiAChViFWFSkKlWIEBYBgLAAIBAEqLAICwAoABVFhWQS4pQUFLAlRYXUgK |
| + | ACiiVAqLBKQKolABAEoIoAAAAAAAAAAIAALAWOKf+5GLTMY1sYlImujGCkNd |
| + | GMFIuvjGFqQ18ZFIa/65FSLrvrjBSGu+uMFIa2MYKkNdGMFIa6MYKQ10YwJD |
| + | XRkJDXxkENd9cYEhrvrkENdGMCQ18YhDXxjBSGvjGCkXXxjC0hr4xgpDXxkU |
| + | 4mv+uRSGu+uS0ia6MYKQ10ZFWGvjIqw18YwUia6MYWrDXRjBSGujGCrE10Yw |
| + | tU131xgU131xgoa364wUNdGMFWGt+uMFIa6MYKQ131xgpDXRjBSGujGCkNd9 |
| + | cYKQ131xgpDXfXGCkNd9cYCGv+uQkNdGSUhroxgpDXRjBSGujGEqQ10YwLDW |
| + | xjBUi62MYKQ1v1xhKRdd9cYKkNd9cYSkNdGMFIa764wUia6MYCGujGCpF10Y |
| + | wUhroxgZ3F18ZBDXfXEIa/64wJDXfXGESGvjGA4rr4xVOJr4xKcTXxjBTia+ |
| + | MinE18ZFOJr/AK5FTia/6pTia/6lIa/64lSLr/riVIa/64lIa/64lIa/64pU |
| + | hr/rjBSGv+uJSGv+uJTia764lOJr/riU4mv+pV4mv+pTia+MinE18YwVeKa+ |
| + | MYDia6MQhroxFhrvrjAcTX/XGBYa+Mg4pr4yDiuvjIOKa6MRYa6MhYa6MirD |
| + | XRjBUhrvrjBSGu+uMFWGu+uMFIa/64wVYa/65FIa/wCuSVImvjIqw18YwVYa |
| + | 6MSkNdGJSGu+uMBDXfXGAhr/AK4wLDXxkETXRjAsNbGMFJprfrjBVhroyFzD |
| + | XRjAqa6MYUNfGMBE10YwVYa6MYKsNdGMFDXRjCUNdGMFU10YwUNdGMJUXXRj |
| + | BQ10YwVDXRjBQ10YwIa6MYA10YwBroxgWGujGAhroxgIa6MYCGujGAhroxgW |
| + | JroxgIa6MYCGujGAhroxhVhroxgF1sA1H/cgR43/AHNpiP1WrxdX7bbEfqlX |
| + | i49/p+pTib/GJU4rv8YpTib9GJTib9GJTib9GJyTib9GJyOK79GJyOJv8YnJ |
| + | OJv8f2ORxXf4xOScTf8A64nI4m//AFxORwXf/r/ZeScE376/2ORxXfvr/Y5H |
| + | E36P7HI4m/Rick4m/R/YpxN+jEpxTfo/sU4m/wAYlOJv8f2KcTf4xKvE3+MS |
| + | nE3+MSnE3+MVq8Df4xKcE36MSnE36MVq8U36MSrxN/jEpxN++uJyOJv31xg5 |
| + | LxN++uMLyOJv31/tByOKb99cYOS8V3764nI4Jv31xg5HE376/wBoORxN++v9 |
| + | jkcTfvricjgb/wDXE5HBd/8ApinI4G//AFxORxTf/rick4n+4fUpxP8AcIxg |
| + | pwN/zSnFd+jE5HE36MU5HE36MTkcDfoxORxN/jFKnE36MSnE36MTkcTfoxOR |
| + | xXfoxOScTfoxORxN/j+xyOK7/H9jkcTf4xOScT/cIxORwN/+uJyTgu//AFxO |
| + | RwN/+v8AZeRwN+j+xyOJv0f2TknE36P7HI4G/wAYnJOJv0YnI4m/xinI4m/x |
| + | iU4rv8YlTib/APXEpxN/+uJU4m/xiU4m/wD1xKcDf/riU4G//XEpwN/+uJTg |
| + | b/8AXEpwN/8AriU4G/8A1xKcDf4xKcDf4xKcDf4xKcDf4xKvA3+P7FOJv0f2 |
| + | KcDfo/scl4m/R/Y5HFN/+v8AY5HE3/6/2ORxN/8Arj/JyXib/wDXH+TkcTf4 |
| + | x/k5HE3+P7fycjib/H9jkvE3+P7HI4Jv0f2TkcTfo/sU4m/RiU4rv/1xKvFN |
| + | /wDriU4m/wD1xKcTf4xKcT/cIxWnE/3CMSnFN/jEq8Tf4xKcTf4xKcTfo/sV |
| + | eJv0YlOJv0YlOJv0YlOJv0YlOJv8YlOKb/GJV4G/xiVeBv0YnJeJv0YnIib9 |
| + | GKcli79GJUhv0YlOJv0YlOJv0YlOJv0YlOJv8YlOJv8AGJU4m/xiVeJv8YlO |
| + | Jv8A9cSnFN/jEq8Df4xKcTf4xKcTf4xKcTf4xKcTf4xKcTf4xKcTf4xKcTf4 |
| + | xKcTf4xKcTf4xKcTf4xKcTf4xKcXJ9dtif1KR2/+3tUTS61Nx+8fv/6q+Mfv |
| + | 8/8AlO6o/G27F/8AwPO/Y9vTO/l6v4Xp6/rt4df7f+pvi77fP/lu7OO2Hp6f |
| + | X9vTO/lfh+nr+u3hn1K8W837s47Yenn1/Z0zv5Pienr+u3hPUrxbzfuzjth6 |
| + | efX9nTO/k+J6ev67eD1K8W837s47Yenn1/Z0zv5Ph+nr+u3g9SfFvN+7OO2H |
| + | p59f2dM7+U+H6ev67eD1K8W837s47Yenn1/Z0zv5Ph+nr+u3g9SvFvOO7eO2 |
| + | Hp59f2dM7+T4fp6/rt4PUrxbzfu3jth6efX9nTO/k+H6ev67eF9SvFvN+7eO |
| + | 2Hp59f2dM7+T4fp6/rt4PUrxbzfuzjth6efX9nTO/k+H6ev67eD1K8W837s4 |
| + | 7Yenn1/Z0zv5Ph+nr+u3g9SvFvN+7OO2Hp59f2dM7+T4fp6/rt4T1K8W837s |
| + | 47Yenn1/Z0zv5Phenr+u3g9SvFvN+7eO2Hp59f2dM7+T4Xp6/rt4PUrxbzfu |
| + | 3jth6efX9nTO/k+F6ev67eD1K8W837t47Yenn1/Z0zv5Phenr+u3g9SvFvN+ |
| + | 7eO2Hp59f2dM7+T4Xp6/rt4PUrxbzju3jth6efX9nTO/k+F6ev67eF9SvFvO |
| + | O7eO2Hp59f2dM7+U+F6ev67eD1L8Xc47t47Yenn1/Z0zv5Phenr+u3g9SvF3 |
| + | OO7eO2Hp59f2dM7+T4Xp6/rt4PUvxdzju3jth6efX9nTO/k+F6Ov67eD1L8X |
| + | c47t47Yenn1/Z0zv5Phenr+u3g9S/FvN+7eO2Hp59f2dM7+T4Xo6/rt4PUrx |
| + | bzfuzjth6efX9nTO/k+F6Ov67eD1K8W837s47Yenn1/Z0zv5Phenr+u3hPUr |
| + | xbzfuzjth6ev1/b0zv5X4Xp6/rt4PUrxbzfu3jth6efX9vTO/k+F6ev67eD1 |
| + | K8W847t47Yenp9f2dM7+T4fp6/rt4PUrxbzju3jth6ev1/b0zv5Ph+nr+u3g |
| + | 9SvFvOO7eO2Hp59f29M7+T4fp6/rt4PUrxbzfu3jth6efX9vTO/k+H6ev67e |
| + | D1J8W837s47Yenn2Pb0zv5X4fp6/rt4PUnxbzfu3jth6efY9vTO/k+H6ev67 |
| + | eE9SfFvN+7eO2Hp59j29M7+T4fp6/rt4PUnxbzfu3jth6efY9vTO/k+H6ev6 |
| + | 7eF9SfFvOO7eO2Hp59j29M7+T4fp6/rt4T1J8W837t47YenH2Pb0zv5Pienr |
| + | +u3hfUnxbzfu3jth6efY9vTO/k+J6ev67eE9SfFvN+7eO2Hp59j29M7+T4fp |
| + | 6/rt4PUnxbzfu3jth6efY9vTO/k+H6ev67eD1J8W837t47Yenn2Pb0zv5Ph+ |
| + | nr+u3g9SfFvN+7eO2Hp59j29M7+T4np6/rt4PUnxbzfu3jth6efY9vTO/k+H |
| + | 6ev67eF9SfFvN+7eO2Hp59j29M7+T4np6/rt4PUnxbzfu3jth6efY9vTO/k+ |
| + | J6ev67eD1J8W837s47Yenn2Pb0zv5Pienr+u3g9SvFvN+7OO2Hp59f29M7+T |
| + | 4np6/rt4X1K8W837s47Yenn1/b0zv5Pienr+u3g9SvFvN+7OO2Hp6fX9vTO/ |
| + | k+H6ev67eD1K8W837s47Yenn1/Z0zv5Pienr+u3hPUrxbzfuzjth6efX9nTO |
| + | /k+J6ev67eD1K8W837s47Yenn1/Z0zv5Ph+nr+u3g9SvFvN+7eO2Hp59f2dM |
| + | 7+T4fp6/rt4PUrxbzfu3jth6efX9nTO/lPh+nr+u3g9SvFvN+7eO2Hp59f2d |
| + | M7+T4fp6/rt4PUrxbzfu3jth6efX9nTO/k+H6ev67eD1K8W837t47Yenn1/Z |
| + | 0zv5Ph+nr+u3g9SvFvN+7eO2Hp59f2dM7+T4fp6/rt4X1K8W837t47Yenn1/ |
| + | Z0zv5Ph+nr+u3g9SvFvN+7eO2Hp59f2dM7+T4fp6/rt4PUrxbzfuzjth6efX |
| + | 9nTO/k+H6ev67eD1K8W837s47Yenn1/Z0zv5Ph+nr+u3hPUrxbzfuzjth6ef |
| + | X9nTO/k+F6ev67eD1K8W837s47Yenn1/Z0zv5Phenr+u3g9SvFvN+7eO2Hp5 |
| + | 9f2dM7+T4Xp6/rt4PUrxbzfu3jth6efX9nTO/k+F6ev67eD1K8W837t47Yen |
| + | n1/Z0zv5Phenr+u3g9SvFvOO7eO2Hp59b2dM7+T4Xp6/rt4X1K8W847t47Ye |
| + | nn1vZ0zv5T4Xp6/rt4PUvxbzfuzjth6efW9nTO/k+F6ev67eD1L8W837s47Y |
| + | enn1vZ0zv5Pg+jr+u3g9S/FvN+7OO2Hp59b2dM7+T4Po6/rt4PUvxbzfuzjt |
| + | h6efW9nTO/k+D6Ov67eD1L8W837s47Yenn1vZ0zv5Pg+jr+u3g9S/FvN+7OO |
| + | 2Hp59b2dM7+T4Po6/rt4PUvxbzfuzjth6efW9nTO/k+D6Ov67eD1L8W837s4 |
| + | 7Yenn1vZ0zv5Pg+jr+u3g9SvFvN+7OO2Hp59b2dM7+T4Po6/rt4PUrxbzfuz |
| + | jth6efW9nTO/k+D6Ov67eD1K8W837s47Yenn1vZ0zv5Pg+jr+u3g9S/FvN+7 |
| + | OO2Hp59b2dM7+T4Po6/rt4PUrxbzfuzjth6efW9nTO/k+D6Ov67eD1L8W837 |
| + | s47Yenn1vZ0zv5Pg+jr+u3g9S/FvN+7OO2Hp59b2dM7+T4Po6/rt4PUrxbzf |
| + | uzjth6efW9nTO/k+D6Ov67eD1L8W837s47Yenn1vZ0zv5Pg+jr+u3g9S/FvN |
| + | +7OO2Hp59b2dM7+T4Po6/rt4PUvxbzfuzjth6efW9nTO/k+D6Ov67eD1L8W8 |
| + | 37s47Yenn1vZ0zv5Pg+jr+u3g9SvFvN+7OO2Hp59b2dM7+T4Xo6/rt4PUrxb |
| + | zfu3jth6efW9nTO/k+F6Ov67eD1K8W837t47Yenn1vZ0zv5Phejr+u3g9SvF |
| + | vN+7eO2Hp59b2dM7+T4Xo6/rt4PUrxbzfu3jth6efW9nTO/k+F6Ov67eD1K8 |
| + | W847t47Yenn1vZ0zv5Phejr+u3g9SvFvOO7eO2Hp59b2dM7+T4Xo6/rt4PUr |
| + | xbzju3jth6efW9nTO/k+F6ev67eD1K8W847t47Yenn1vZ0zv5Phenr+u3g9S |
| + | vF3OO7eO2Hp59b2dM7+T4Xp6/rt4PUrxbzju3jth6efW9nTO/k+F6ev67eD1 |
| + | K8W847t47Yenn1vZ0zv5Phenr+u3hPUrxbzju3jth6efW9nTO/lfhenr+u3g |
| + | 9SvFvOO7eO2Hp59b2dM7+T4Xp6/rt4PUrxbzfu3jth6efW9nTO/k+F6ev67e |
| + | D1K8W837t47Yenn1vZ0zv5Phenr+u3g9SvFvN+7eO2Hp59b2dM7+T4Xp6/rt |
| + | 4PUrxbzfu3jth6efW9nTO/k+F6ev67eD1K8W837t47Yenn1vZ0zv5Phenr+u |
| + | 3g9SvFvN+7eO2Hp59b2dM7+T4Xp6/rt4PUrxbzfu3jth6efW9nTO/k+H6ev6 |
| + | 7eF9SvFvN+7eO2Hp59b2dM7+T4fp6/rt4PUrxbzfu3jth6efW9nTO/k+H6ev |
| + | 67eD1K8W837t47Yenn1vZ0zv5Ph+nr+u3g9SvFvN+7eO2Hp59b2dM7+T4fp6 |
| + | /rt4PUrxbzfu3jth6efW9nTO/k+H6ev67eE9SvFvOO7eO2Hp59b2dM7+T4fp |
| + | 6/rt4PUrxbzfu3jth6efW9nTO/k+H6ev67eD1K8W837t47Yenn1vZ0zv5X4f |
| + | p6/rt4PUrxbzfuzjth6efW9nTO/k+J6ev67eD1K8W837s47Yenp9b2dM7+T4 |
| + | np6/rt4PUrxbzfuzjth6efW9nTO/k+J6ev67eD1K8W837s47Yenn1vZ0zv5P |
| + | ienr+u3g9SvFvN+7OO2Hp59b2dM7+T4np6/rt4PUrxbzfuzjth6efW9nTO/k |
| + | +J6ev67eD1K8W837s47Yenn1vZ0zv5Pienr+u3g9SvFvN+7OO2Hp59b2dM7+ |
| + | T4np6/rt4PUrxbzfuzjth6efW9nTO/k+J6ev67eD1K8W837t47Yenn1vZ0zv |
| + | 5Pienr+u3g9SvFvN+7OO2Hp59b2dM7+T4np6/rt4PUrxbzfuzjth6efW9nTO |
| + | /k+J6ev67eD1J8W837s47Yenn1vZ0zv5Pienr+u3g9SfFvN+7eO2Hp59b2dM |
| + | 7+V+J6ev67eD1J8W837t47Yenn1vZ0zv5Pienr+u3g9SfFvN+7OO2Hp59b2d |
| + | M7+T4vp6/rt4PUnxbzfuzjth6efW9nTO/k+L6ev67eD1J8W837s47Yenn1vZ |
| + | 0zv5Pi+nr+u3g9SfFvN+7OO2Hp59b2dM7+T4vp6/rt4PUnxbzfuzjth6efW9 |
| + | nTO/k+L6ev67eD1J8W837s47Yenn1vZ0zv5Pi+nr+u3g9SfFvN+7OO2Hp59b |
| + | 2dM7+T4vp6/rt4PUnxbzfuzjth6efW9nTO/k+L6ev67eD1J8W837s47Yenn1 |
| + | vZ0zv5Pi+nr+u3g9SfFvN+7OO2Hp59b2dM7+T4vp6/rt4PUnxbzfuzjth6ef |
| + | W9nTO/k+L6ev67eD1J8W837s47Yenn1vZ0zv5Pi+nr+u3g9SfFvN+7OO2Hp5 |
| + | 9b2dM7+T4np6/rt4a+v/AKmeLvr8f+X7s07dsPT1+t7Omd/J8T09f128Ox9P |
| + | /VXxj9Pj/wAr3VP523Yunn1/Z0zv5T4fp6/rt4fpO2b8p+yWzAtmBbMC2YFs |
| + | wLZgWzAtmBbMC2YFswLZgWzAtmBbMC2YFswLZgWzAtmBbMC2YFswLZgWzAtm |
| + | BbMC2YFswLZgWzAtmBbMC2YFswLZgWzAtmBbMC2YFswLZgWzAtmBbMC2YFsw |
| + | LZgWzAtmBbMC2YFswLZgWzAtmBbMC2YFswLZgWzAtmBbMC2YFswLZgWzAtmB |
| + | bMC2YFswLZgWzAtmBbMC2YFswLZgWzAtmBbMC2YFswLZgWzAtmBbMC2YFswL |
| + | ZgWzAtmBbMC2YFswLZgWzAtmBbMC2YFswLZgWzAtmBbMC2YFswLZgWzAtmBb |
| + | MC2YFswLZgWzAtmBbMC2YFswLZgWzAtmBbMC2YFswLZgWzAtmBbMC2YFswLZ |
| + | gWzAtmBbMC2YFswLZgWzAtmBbMC2YFswLZgWzAtmBbMC2YFswf/ZDQotLS0t |
| + | LS0tLS0tLS0tUnVieU11bHRpcGFydFBvc3QNCkNvbnRlbnQtRGlzcG9zaXRp |
| + | b246IGZvcm0tZGF0YTsgbmFtZT0idGhlbWVfYXNzZXRbZm9sZGVyXSINCg0K |
| + | aW1hZ2VzDQotLS0tLS0tLS0tLS0tUnVieU11bHRpcGFydFBvc3QNCkNvbnRl |
| + | bnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0idGhlbWVfYXNzZXRb |
| + | Y2hlY2tzdW1dIg0KDQozZjZhMTVmMmNlODkyMzUwOTJhZTI1YjEyNTA4NGRk |
| + | Nw0KLS0tLS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0DQpDb250ZW50LURp |
| + | c3Bvc2l0aW9uOiBmb3JtLWRhdGE7IG5hbWU9ImF1dGhfdG9rZW4iDQoNCjJB |
| + | OWlUUXlvQUNIYkE0ZUFWTENIDQotLS0tLS0tLS0tLS0tUnVieU11bHRpcGFy |
| + | dFBvc3QtLQ0KDQo= |
| + | headers: |
| + | User-Agent: |
| + | - Faraday v0.9.2 |
| + | Accept: |
| + | - application/json |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Thu, 09 Mar 2017 14:25:02 GMT |
| + | X-Locomotive-Account-Email: |
| + | - admin@locomotivecms.com |
| + | X-Locomotive-Account-Token: |
| + | - 2A9iTQyoACHbA4eAVLCH |
| + | X-Locomotive-Site-Handle: |
| + | - benevolent-waterfall-850 |
| + | Content-Type: |
| + | - multipart/form-data; boundary=-----------RubyMultipartPost |
| + | Content-Length: |
| + | - '13286' |
| + | response: |
| + | status: |
| + | code: 201 |
| + | message: Created |
| + | headers: |
| + | Content-Type: |
| + | - application/json |
| + | Etag: |
| + | - W/"f59d79192159a4c32d813c3811397507" |
| + | Cache-Control: |
| + | - max-age=0, private, must-revalidate |
| + | X-Request-Id: |
| + | - a32cea3b-70d1-44aa-98f5-091c75d9c780 |
| + | X-Runtime: |
| + | - '0.069230' |
| + | Content-Length: |
| + | - '339' |
| + | body: |
| + | encoding: UTF-8 |
| + | string: '{"_id":"58c165be87f64357b620344b","created_at":"2017-03-09T14:25:02Z","updated_at":"2017-03-09T14:25:02Z","content_type":"image","local_path":"images/top.jpg","folder":"images","checksum":"3f6a15f2ce89235092ae25b125084dd7","filename":"top.jpg","url":"/sites/58c165b387f64357b620338d/theme/images/top.jpg","size":"12.4 |
| + | KB","raw_size":12697}' |
| + | http_version: |
| + | recorded_at: Thu, 09 Mar 2017 14:25:02 GMT |
| + | - request: |
| + | method: post |
| + | uri: http://localhost:3000/locomotive/api/v3/theme_assets.json |
| + | body: |
| + | encoding: UTF-8 |
| + | string: "-------------RubyMultipartPost\r\nContent-Disposition: form-data; name=\"theme_asset[source]\"; |
| + | filename=\"common.js\"\r\nContent-Length: 27\r\nContent-Type: application/octet-stream\r\nContent-Transfer-Encoding: |
| + | 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\n2A9iTQyoACHbA4eAVLCH\r\n-------------RubyMultipartPost--\r\n\r\n" |
| + | headers: |
| + | User-Agent: |
| + | - Faraday v0.9.2 |
| + | Accept: |
| + | - application/json |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Thu, 09 Mar 2017 14:25:02 GMT |
| + | X-Locomotive-Account-Email: |
| + | - admin@locomotivecms.com |
| + | X-Locomotive-Account-Token: |
| + | - 2A9iTQyoACHbA4eAVLCH |
| + | X-Locomotive-Site-Handle: |
| + | - benevolent-waterfall-850 |
| + | Content-Type: |
| + | - multipart/form-data; boundary=-----------RubyMultipartPost |
| + | Content-Length: |
| + | - '620' |
| + | response: |
| + | status: |
| + | code: 201 |
| + | message: Created |
| + | headers: |
| + | Content-Type: |
| + | - application/json |
| Etag: | |
| - | - W/"a7f0da21dd71ed85426694c42c68f35b" |
| + | - W/"b67a3a7e751d1a08ddbde0485c6fdcb7" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - b7abb9c2-f666-4d8d-853a-87654d905b97 |
| + | - af5f0a17-dff4-4082-a696-89014ad324d8 |
| X-Runtime: | |
| - | - '0.060130' |
| + | - '0.049936' |
| Content-Length: | |
| - '363' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae9087f6437d12223c50","created_at":"2016-06-17T08:02:24Z","updated_at":"2016-06-17T08:02:24Z","content_type":"javascript","local_path":"javascripts/common.js","folder":"javascripts","checksum":"d05d02ecb331afbe373db79b0a88ef36","filename":"common.js","url":"/sites/5763ae8287f6437d12223b8f/theme/javascripts/common.js","size":"27 |
| + | string: '{"_id":"58c165be87f64357b620344c","created_at":"2017-03-09T14:25:02Z","updated_at":"2017-03-09T14:25:02Z","content_type":"javascript","local_path":"javascripts/common.js","folder":"javascripts","checksum":"d05d02ecb331afbe373db79b0a88ef36","filename":"common.js","url":"/sites/58c165b387f64357b620338d/theme/javascripts/common.js","size":"27 |
| Bytes","raw_size":27}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:24 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:25:02 GMT |
| + | - request: |
| + | method: post |
| + | uri: http://localhost:3000/locomotive/api/v3/theme_assets.json |
| + | body: |
| + | encoding: UTF-8 |
| + | string: "-------------RubyMultipartPost\r\nContent-Disposition: form-data; name=\"theme_asset[source]\"; |
| + | filename=\"application.js\"\r\nContent-Length: 84\r\nContent-Type: application/octet-stream\r\nContent-Transfer-Encoding: |
| + | binary\r\n\r\n(function(){$(document).ready(function(){return alert(\"hello |
| + | 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\n2A9iTQyoACHbA4eAVLCH\r\n-------------RubyMultipartPost--\r\n\r\n" |
| + | headers: |
| + | User-Agent: |
| + | - Faraday v0.9.2 |
| + | Accept: |
| + | - application/json |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Thu, 09 Mar 2017 14:25:03 GMT |
| + | X-Locomotive-Account-Email: |
| + | - admin@locomotivecms.com |
| + | X-Locomotive-Account-Token: |
| + | - 2A9iTQyoACHbA4eAVLCH |
| + | X-Locomotive-Site-Handle: |
| + | - benevolent-waterfall-850 |
| + | Content-Type: |
| + | - multipart/form-data; boundary=-----------RubyMultipartPost |
| + | Content-Length: |
| + | - '682' |
| + | response: |
| + | status: |
| + | code: 201 |
| + | message: Created |
| + | headers: |
| + | Content-Type: |
| + | - application/json |
| + | Etag: |
| + | - W/"caef688dd159f3f727b0591f2ca31645" |
| + | Cache-Control: |
| + | - max-age=0, private, must-revalidate |
| + | X-Request-Id: |
| + | - 5047967a-fabe-4d35-bb2a-242ceb9dbb5a |
| + | X-Runtime: |
| + | - '0.043771' |
| + | Content-Length: |
| + | - '378' |
| + | body: |
| + | encoding: UTF-8 |
| + | string: '{"_id":"58c165bf87f64357b620344d","created_at":"2017-03-09T14:25:03Z","updated_at":"2017-03-09T14:25:03Z","content_type":"javascript","local_path":"javascripts/application.js","folder":"javascripts","checksum":"dafcc4a2f059c53e47bf8d7ea4dd1e11","filename":"application.js","url":"/sites/58c165b387f64357b620338d/theme/javascripts/application.js","size":"84 |
| + | Bytes","raw_size":84}' |
| + | http_version: |
| + | recorded_at: Thu, 09 Mar 2017 14:25:03 GMT |
| + | - request: |
| + | method: post |
| + | uri: http://localhost:3000/locomotive/api/v3/theme_assets.json |
| + | body: |
| + | encoding: ASCII-8BIT |
| + | string: !binary |- |
| + | LS0tLS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0DQpDb250ZW50LURpc3Bv |
| + | c2l0aW9uOiBmb3JtLWRhdGE7IG5hbWU9InRoZW1lX2Fzc2V0W3NvdXJjZV0i |
| + | OyBmaWxlbmFtZT0iY2h1bmtmaXZlLmNzcyINCkNvbnRlbnQtTGVuZ3RoOiAy |
| + | ODMNCkNvbnRlbnQtVHlwZTogYXBwbGljYXRpb24vb2N0ZXQtc3RyZWFtDQpD |
| + | b250ZW50LVRyYW5zZmVyLUVuY29kaW5nOiBiaW5hcnkNCg0K77u/QGZvbnQt |
| + | ZmFjZXtmb250LWZhbWlseTonQ2h1bmtGaXZlUm9tYW4nO3NyYzp1cmwoImNo |
| + | dW5rZml2ZS13ZWJmb250LmVvdCIpO3NyYzpsb2NhbCgi4pi6IiksdXJsKCJj |
| + | aHVua2ZpdmUtd2ViZm9udC53b2ZmIikgZm9ybWF0KCJ3b2ZmIiksdXJsKCJj |
| + | aHVua2ZpdmUtd2ViZm9udC50dGYiKSBmb3JtYXQoInRydWV0eXBlIiksdXJs |
| + | KCJjaHVua2ZpdmUtd2ViZm9udC5zdmcjd2ViZm9udHdsWjVlYzh2IikgZm9y |
| + | bWF0KCJzdmciKTtmb250LXdlaWdodDpub3JtYWw7Zm9udC1zdHlsZTpub3Jt |
| + | YWx9Cg0KLS0tLS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0DQpDb250ZW50 |
| + | LURpc3Bvc2l0aW9uOiBmb3JtLWRhdGE7IG5hbWU9InRoZW1lX2Fzc2V0W2Zv |
| + | bGRlcl0iDQoNCmZvbnRzDQotLS0tLS0tLS0tLS0tUnVieU11bHRpcGFydFBv |
| + | c3QNCkNvbnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0idGhl |
| + | bWVfYXNzZXRbY2hlY2tzdW1dIg0KDQo1N2MwMjY4NDI4ZjIyMDQyNzJhYTMy |
| + | ZGU0MzEwNDI2Nw0KLS0tLS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0DQpD |
| + | b250ZW50LURpc3Bvc2l0aW9uOiBmb3JtLWRhdGE7IG5hbWU9ImF1dGhfdG9r |
| + | ZW4iDQoNCjJBOWlUUXlvQUNIYkE0ZUFWTENIDQotLS0tLS0tLS0tLS0tUnVi |
| + | eU11bHRpcGFydFBvc3QtLQ0KDQo= |
| + | headers: |
| + | User-Agent: |
| + | - Faraday v0.9.2 |
| + | Accept: |
| + | - application/json |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Thu, 09 Mar 2017 14:25:05 GMT |
| + | X-Locomotive-Account-Email: |
| + | - admin@locomotivecms.com |
| + | X-Locomotive-Account-Token: |
| + | - 2A9iTQyoACHbA4eAVLCH |
| + | X-Locomotive-Site-Handle: |
| + | - benevolent-waterfall-850 |
| + | Content-Type: |
| + | - multipart/form-data; boundary=-----------RubyMultipartPost |
| + | Content-Length: |
| + | - '875' |
| + | response: |
| + | status: |
| + | code: 201 |
| + | message: Created |
| + | headers: |
| + | Content-Type: |
| + | - application/json |
| + | Etag: |
| + | - W/"bd6e29908b2d9322b14ce67d8e2072fa" |
| + | Cache-Control: |
| + | - max-age=0, private, must-revalidate |
| + | X-Request-Id: |
| + | - 4eb8b7b4-ff3b-4095-96eb-b15190356f08 |
| + | X-Runtime: |
| + | - '0.042853' |
| + | Content-Length: |
| + | - '359' |
| + | body: |
| + | encoding: UTF-8 |
| + | string: '{"_id":"58c165c187f64357b620344e","created_at":"2017-03-09T14:25:05Z","updated_at":"2017-03-09T14:25:05Z","content_type":"stylesheet","local_path":"fonts/chunkfive.css","folder":"fonts","checksum":"57c0268428f2204272aa32de43104267","filename":"chunkfive.css","url":"/sites/58c165b387f64357b620338d/theme/fonts/chunkfive.css","size":"283 |
| + | Bytes","raw_size":283}' |
| + | http_version: |
| + | recorded_at: Thu, 09 Mar 2017 14:25:05 GMT |
| + | - request: |
| + | method: post |
| + | uri: http://localhost:3000/locomotive/api/v3/theme_assets.json |
| + | body: |
| + | encoding: ASCII-8BIT |
| + | string: !binary |- |
| + | LS0tLS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0DQpDb250ZW50LURpc3Bv |
| + | c2l0aW9uOiBmb3JtLWRhdGE7IG5hbWU9InRoZW1lX2Fzc2V0W3NvdXJjZV0i |
| + | OyBmaWxlbmFtZT0icmVib290LmNzcyINCkNvbnRlbnQtTGVuZ3RoOiAyMDUw |
| + | DQpDb250ZW50LVR5cGU6IGFwcGxpY2F0aW9uL29jdGV0LXN0cmVhbQ0KQ29u |
| + | dGVudC1UcmFuc2Zlci1FbmNvZGluZzogYmluYXJ5DQoNCu+7v2h0bWwsYm9k |
| + | eSxkaXYsc3BhbixvYmplY3QsaWZyYW1lLGgxLGgyLGgzLGg0LGg1LGg2LHAs |
| + | YmxvY2txdW90ZSxwcmUsYSxhYmJyLGFjcm9ueW0sYWRkcmVzcyxjb2RlLGRl |
| + | bCxkZm4sZW0saW1nLHEsZGwsZHQsZGQsb2wsdWwsbGksZmllbGRzZXQsZm9y |
| + | bSxsYWJlbCxsZWdlbmQsdGFibGUsY2FwdGlvbix0Ym9keSx0Zm9vdCx0aGVh |
| + | ZCx0cix0aCx0ZHttYXJnaW46MDtwYWRkaW5nOjA7Ym9yZGVyOjA7Zm9udC13 |
| + | ZWlnaHQ6aW5oZXJpdDtmb250LXN0eWxlOmluaGVyaXQ7Zm9udC1zaXplOjEw |
| + | MCU7Zm9udC1mYW1pbHk6aW5oZXJpdDt2ZXJ0aWNhbC1hbGlnbjpiYXNlbGlu |
| + | ZX0uY29udGFpbmVye21hcmdpbjowIGF1dG87d2lkdGg6OTAwcHg7cGFkZGlu |
| + | ZzoyMHB4O3RleHQtYWxpZ246bGVmdH0ubGluZSwubGFzdFVuaXR7b3ZlcmZs |
| + | b3c6aGlkZGVuO19vdmVyZmxvdzp2aXNpYmxlO196b29tOjF9LmxpbmUye196 |
| + | b29tOjE7YmFja2dyb3VuZC1jb2xvcjojRkZGfS51bml0e2Zsb2F0OmxlZnQ7 |
| + | X3pvb206MX0udW5pdEV4dHtmbG9hdDpyaWdodH0uc2l6ZTFvZjF7ZmxvYXQ6 |
| + | bm9uZX0uc2l6ZTFvZjJ7d2lkdGg6NTAlfS5zaXplMW9mM3t3aWR0aDozMy4z |
| + | MzMzMyV9LnNpemUyb2Yze3dpZHRoOjY2LjY2NjY2JX0uc2l6ZTFvZjR7d2lk |
| + | dGg6MjUlfS5zaXplM29mNHt3aWR0aDo3NSV9LnNpemUxb2Y1e3dpZHRoOjIw |
| + | JX0uc2l6ZTJvZjV7d2lkdGg6NDAlfS5zaXplM29mNXt3aWR0aDo2MCV9LnNp |
| + | emU0b2Y1e3dpZHRoOjgwJX0ubGFzdFVuaXR7ZmxvYXQ6bm9uZTtfcG9zaXRp |
| + | b246cmVsYXRpdmU7X2xlZnQ6LTNweDtfbWFyZ2luLXJpZ2h0Oi0zcHg7d2lk |
| + | dGg6YXV0b30ucGFkZGluZzEwcHh7cGFkZGluZzoxMHB4fS5wYWRkaW5nMTVw |
| + | eHtwYWRkaW5nOjE1cHh9LnBhZGRpbmcyMHB4e3BhZGRpbmc6MjBweH0uY2xl |
| + | YXJ7Y2xlYXI6Ym90aDtoZWlnaHQ6MXB4O2xpbmUtaGVpZ2h0OjFweH1ib2R5 |
| + | e2ZvbnQtc2l6ZTo3NSU7bGluZS1oZWlnaHQ6MS41fWgxLGgyLGgzLGg0LGg1 |
| + | LGg2e2ZvbnQtd2VpZ2h0Om5vcm1hbH1oMXtmb250LXNpemU6My42ZW07bGlu |
| + | ZS1oZWlnaHQ6MTttYXJnaW4tYm90dG9tOjAuNWVtO2NvbG9yOiM0MzQzNDM7 |
| + | Zm9udC13ZWlnaHQ6Ym9sZDtsZXR0ZXItc3BhY2luZzotMC4wNWVtfWgye2Zv |
| + | bnQtc2l6ZToyZW07bWFyZ2luLWJvdHRvbTowLjc1ZW07Y29sb3I6IzQzNDM0 |
| + | M31oM3tmb250LXNpemU6MS41ZW07bGluZS1oZWlnaHQ6MTttYXJnaW4tYm90 |
| + | dG9tOjFlbX1oNHtmb250LXNpemU6MS4yNWVtO2xpbmUtaGVpZ2h0OjEuMjU7 |
| + | bWFyZ2luOjAuNWVtIDAgMC41ZW0gMDtjb2xvcjojNTY1NzU3O2ZvbnQtd2Vp |
| + | Z2h0OmJvbGR9aDV7Zm9udC1zaXplOjEuM2VtO2ZvbnQtd2VpZ2h0Om5vcm1h |
| + | bDtjb2xvcjojNDE0MjQwfWg2e2ZvbnQtc2l6ZToxLjNlbTtmb250LXdlaWdo |
| + | dDpib2xkO2ZvbnQtc3R5bGU6aXRhbGljO2NvbG9yOiM0MzQzNDM7bWFyZ2lu |
| + | Oi0yMHB4IDAgMjBweCAwO2xldHRlci1zcGFjaW5nOi0wLjA1ZW19cHttYXJn |
| + | aW46MCAwIDEuNWVtO2NvbG9yOiM0MTQyNDB9LnRjZW50ZXJ7dGV4dC1hbGln |
| + | bjpjZW50ZXJ9LnRyaWdodHt0ZXh0LWFsaWduOnJpZ2h0fS50bGVmdHt0ZXh0 |
| + | LWFsaWduOmxlZnR9LnRqdXN0aWZ5e3RleHQtYWxpZ246anVzdGlmeX0uZnJp |
| + | Z2h0e2Zsb2F0OnJpZ2h0fS5ub21hcmdpbnttYXJnaW46MCAhaW1wb3J0YW50 |
| + | fS5tdDMwe21hcmdpbi10b3A6MzBweCAhaW1wb3J0YW50fS5tdDIwe21hcmdp |
| + | bi10b3A6MjBweCAhaW1wb3J0YW50fS5tYjIwe21hcmdpbi1ib3R0b206MjBw |
| + | eCAhaW1wb3J0YW50fS5tMjB7bWFyZ2luOjIwcHggIWltcG9ydGFudH0ubXQx |
| + | MHttYXJnaW4tdG9wOjEwcHggIWltcG9ydGFudH0ubWwxMHttYXJnaW4tbGVm |
| + | dDoxMHB4ICFpbXBvcnRhbnR9Lm1yMTB7bWFyZ2luLXJpZ2h0OjEwcHggIWlt |
| + | cG9ydGFudH0ubWIxMHttYXJnaW4tYm90dG9tOjEwcHggIWltcG9ydGFudH0u |
| + | bWIyMHttYXJnaW4tYm90dG9tOjIwcHggIWltcG9ydGFudH0ubTEwe21hcmdp |
| + | bjoxMHB4ICFpbXBvcnRhbnR94oCLIC5tYjMwe21hcmdpbi1ib3R0b206MzBw |
| + | eCAhaW1wb3J0YW50fQoNCi0tLS0tLS0tLS0tLS1SdWJ5TXVsdGlwYXJ0UG9z |
| + | dA0KQ29udGVudC1EaXNwb3NpdGlvbjogZm9ybS1kYXRhOyBuYW1lPSJ0aGVt |
| + | ZV9hc3NldFtmb2xkZXJdIg0KDQpzdHlsZXNoZWV0cw0KLS0tLS0tLS0tLS0t |
| + | LVJ1YnlNdWx0aXBhcnRQb3N0DQpDb250ZW50LURpc3Bvc2l0aW9uOiBmb3Jt |
| + | LWRhdGE7IG5hbWU9InRoZW1lX2Fzc2V0W2NoZWNrc3VtXSINCg0KMWI0NDEw |
| + | NjZmMjZiNjUyZTg0MDFhZmRmMzRkZjI0MDMNCi0tLS0tLS0tLS0tLS1SdWJ5 |
| + | TXVsdGlwYXJ0UG9zdA0KQ29udGVudC1EaXNwb3NpdGlvbjogZm9ybS1kYXRh |
| + | OyBuYW1lPSJhdXRoX3Rva2VuIg0KDQoyQTlpVFF5b0FDSGJBNGVBVkxDSA0K |
| + | LS0tLS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0LS0NCg0K |
| + | headers: |
| + | User-Agent: |
| + | - Faraday v0.9.2 |
| + | Accept: |
| + | - application/json |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Thu, 09 Mar 2017 14:25:06 GMT |
| + | X-Locomotive-Account-Email: |
| + | - admin@locomotivecms.com |
| + | X-Locomotive-Account-Token: |
| + | - 2A9iTQyoACHbA4eAVLCH |
| + | X-Locomotive-Site-Handle: |
| + | - benevolent-waterfall-850 |
| + | Content-Type: |
| + | - multipart/form-data; boundary=-----------RubyMultipartPost |
| + | Content-Length: |
| + | - '2646' |
| + | response: |
| + | status: |
| + | code: 201 |
| + | message: Created |
| + | headers: |
| + | Content-Type: |
| + | - application/json |
| + | Etag: |
| + | - W/"e3965ab0df23eaf5b5d8eea9198b4dd9" |
| + | Cache-Control: |
| + | - max-age=0, private, must-revalidate |
| + | X-Request-Id: |
| + | - 9ba101b6-fb19-4e8f-91d3-b1dfecd94c82 |
| + | X-Runtime: |
| + | - '0.044265' |
| + | Content-Length: |
| + | - '364' |
| + | body: |
| + | encoding: UTF-8 |
| + | string: '{"_id":"58c165c287f64357b620344f","created_at":"2017-03-09T14:25:06Z","updated_at":"2017-03-09T14:25:06Z","content_type":"stylesheet","local_path":"stylesheets/reboot.css","folder":"stylesheets","checksum":"1b441066f26b652e8401afdf34df2403","filename":"reboot.css","url":"/sites/58c165b387f64357b620338d/theme/stylesheets/reboot.css","size":"2 |
| + | KB","raw_size":2050}' |
| + | http_version: |
| + | recorded_at: Thu, 09 Mar 2017 14:25:06 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| body: | |
| 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/5763ae8287f6437d12223b8f/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/5763ae8287f6437d12223b8f/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/5763ae8287f6437d12223b8f/theme/images/nav_on.png?edb293028f9c07f2d692d066cd8a458a) |
| - | repeat-x 0 0}#banner{padding-top:20px;background:transparent url(/sites/5763ae8287f6437d12223b8f/theme/images/sep.png?89e0275185e661639fb14130410843b6) |
| + | filename=\"application.css\"\r\nContent-Length: 2805\r\nContent-Type: application/octet-stream\r\nContent-Transfer-Encoding: |
| + | binary\r\n\r\nbody{background:#f0eee3 url(\"/sites/58c165b387f64357b620338d/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/58c165b387f64357b620338d/theme/images/sep.png?89e0275185e661639fb14130410843b6) |
| + | repeat-x 0 0}.more a{font-style:italic;font-weight:bold}.container{width:950px;padding-top:0px}.error{text-align:center;font-size:24px;text-transform:capitalize}#menu{height:40px}#nav{list-style:none;height:40px}#nav |
| + | li{float:left;padding:0px 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/58c165b387f64357b620338d/theme/images/nav_on.png?edb293028f9c07f2d692d066cd8a458a) |
| + | repeat-x 0 0}#banner{padding-top:20px;background:transparent url(/sites/58c165b387f64357b620338d/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/5763ae8287f6437d12223b8f/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 |
| + | url(/sites/58c165b387f64357b620338d/theme/images/photo_frame.png?93c2911287a5754bed65a028c6aa4a7c) |
| + | no-repeat 0 0;padding:24px 0 0px 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/5763ae8287f6437d12223b8f/theme/images/sep.png?89e0275185e661639fb14130410843b6) |
| + | li{margin:0 20px 20px 0;padding:0 0 20px 0px;background:transparent url(/sites/58c165b387f64357b620338d/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 | |
| 0 0 0}#contactform{margin-top:30px}#contactform p{margin-bottom:10px;clear:both}#contactform | |
| p label{float:left;width:200px}#contactform p input[type=text],#contactform | |
| p textarea{font-size:1em;padding:3px 5px}#contactform p input[type=text]{width:200px}#contactform | |
| - | p textarea{width:400px;height:200px}#contactform p.action{padding:0 0 15px |
| + | p textarea{width:400px;height:200px}#contactform p.action{padding:0 0px 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/5763ae8287f6437d12223b8f/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: |
| + | 5px;text-transform:uppercase;margin:0 5px;border:none}#footer{background:transparent |
| + | url(/sites/58c165b387f64357b620338d/theme/images/sep.png?89e0275185e661639fb14130410843b6) |
| + | repeat-x 0 0;margin-top:20px;padding-top:10px}#footer p{text-align:center;font-size:12px}\n\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\ne271cd3a2409785343521b459acf511a\r\n-------------RubyMultipartPost\r\nContent-Disposition: |
| - | form-data; name=\"auth_token\"\r\n\r\nHyqKxyBLmEH9x_GzYnWY\r\n-------------RubyMultipartPost--\r\n\r\n" |
| + | form-data; name=\"theme_asset[checksum]\"\r\n\r\n4fe35b496e1177530216bbc143ba7bbe\r\n-------------RubyMultipartPost\r\nContent-Disposition: |
| + | form-data; name=\"auth_token\"\r\n\r\n2A9iTQyoACHbA4eAVLCH\r\n-------------RubyMultipartPost--\r\n\r\n" |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:26 GMT |
| + | - Thu, 09 Mar 2017 14:25:07 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| - | - '3391' |
| + | - '3406' |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -23372,21 +23479,21 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"04a851ce28e55140df3081f5d582e540" |
| + | - W/"2063d6c71b7a6ff1d6507b64fa68e069" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 5f55b5ec-7a96-41b3-bc31-0c5e43c6a272 |
| + | - 82a6d6ff-8f64-47d1-8d5e-8045cab21db9 |
| X-Runtime: | |
| - | - '0.068034' |
| + | - '0.050673' |
| Content-Length: | |
| - '382' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae9287f6437d12223c51","created_at":"2016-06-17T08:02:26Z","updated_at":"2016-06-17T08:02:26Z","content_type":"stylesheet","local_path":"stylesheets/application.css","folder":"stylesheets","checksum":"e271cd3a2409785343521b459acf511a","filename":"application.css","url":"/sites/5763ae8287f6437d12223b8f/theme/stylesheets/application.css","size":"2.72 |
| - | KB","raw_size":2790}' |
| + | string: '{"_id":"58c165c387f64357b6203450","created_at":"2017-03-09T14:25:07Z","updated_at":"2017-03-09T14:25:07Z","content_type":"stylesheet","local_path":"stylesheets/application.css","folder":"stylesheets","checksum":"4fe35b496e1177530216bbc143ba7bbe","filename":"application.css","url":"/sites/58c165b387f64357b620338d/theme/stylesheets/application.css","size":"2.74 |
| + | KB","raw_size":2805}' |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:26 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:25:07 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -23397,22 +23504,22 @@ 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\nHyqKxyBLmEH9x_GzYnWY\r\n-------------RubyMultipartPost--\r\n\r\n" |
| + | form-data; name=\"auth_token\"\r\n\r\n2A9iTQyoACHbA4eAVLCH\r\n-------------RubyMultipartPost--\r\n\r\n" |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:26 GMT |
| + | - Thu, 09 Mar 2017 14:25:07 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| @@ | @@ -23425,28 +23532,28 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"3f8450ee3128d0406293918519419d6e" |
| + | - W/"5476f1027aa7fdc7275198318c128dc7" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - a2be9352-4b27-4c63-9fc7-f8a14f69d428 |
| + | - ab222738-7167-49d5-8320-dd1dc17ca197 |
| X-Runtime: | |
| - | - '0.081694' |
| + | - '0.060562' |
| Content-Length: | |
| - '379' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae9287f6437d12223c52","created_at":"2016-06-17T08:02:26Z","updated_at":"2016-06-17T08:02:26Z","content_type":"stylesheet","local_path":"stylesheets/other/extra.css","folder":"stylesheets/other","checksum":"d41d8cd98f00b204e9800998ecf8427e","filename":"extra.css","url":"/sites/5763ae8287f6437d12223b8f/theme/stylesheets/other/extra.css","size":"0 |
| + | string: '{"_id":"58c165c387f64357b6203451","created_at":"2017-03-09T14:25:07Z","updated_at":"2017-03-09T14:25:07Z","content_type":"stylesheet","local_path":"stylesheets/other/extra.css","folder":"stylesheets/other","checksum":"d41d8cd98f00b204e9800998ecf8427e","filename":"extra.css","url":"/sites/58c165b387f64357b620338d/theme/stylesheets/other/extra.css","size":"0 |
| Bytes","raw_size":0}' | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:26 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:25:07 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| body: | |
| encoding: UTF-8 | |
| string: "-------------RubyMultipartPost\r\nContent-Disposition: form-data; name=\"theme_asset[source]\"; | |
| - | filename=\"style.css\"\r\nContent-Length: 1452\r\nContent-Type: application/octet-stream\r\nContent-Transfer-Encoding: |
| + | filename=\"style.css\"\r\nContent-Length: 1456\r\nContent-Type: application/octet-stream\r\nContent-Transfer-Encoding: |
| binary\r\n\r\nhtml html,html body,html div,html span,html applet,html object,html | |
| iframe,html h1,html h2,html h3,html h4,html h5,html h6,html p,html blockquote,html | |
| pre,html a,html abbr,html acronym,html address,html big,html cite,html code,html | |
| @@ | @@ -23461,32 +23568,32 @@ http_interactions: |
| html{line-height:1}html ol,html ul{list-style:none}html table{border-collapse:collapse;border-spacing:0}html | |
| caption,html th,html td{text-align:left;font-weight:normal;vertical-align:middle}html | |
| q,html blockquote{quotes:none}html q:before,html q:after,html blockquote:before,html | |
| - | blockquote:after{content:\"\";content:none}html a img{border:0}html article,html |
| + | blockquote:after{content:\"\";content:none}html a img{border:none}html article,html |
| aside,html details,html figcaption,html figure,html footer,html header,html | |
| hgroup,html main,html menu,html nav,html section,html summary{display:block}body{background:red}body | |
| - | h1{color:green}\r\n-------------RubyMultipartPost\r\nContent-Disposition: |
| + | h1{color:green}\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\nad2e36fdbc6b9ea164f875e19af0c90e\r\n-------------RubyMultipartPost\r\nContent-Disposition: |
| - | form-data; name=\"auth_token\"\r\n\r\nHyqKxyBLmEH9x_GzYnWY\r\n-------------RubyMultipartPost--\r\n\r\n" |
| + | form-data; name=\"theme_asset[checksum]\"\r\n\r\n65b079bcb703b1726b6f7c106c7d26ac\r\n-------------RubyMultipartPost\r\nContent-Disposition: |
| + | form-data; name=\"auth_token\"\r\n\r\n2A9iTQyoACHbA4eAVLCH\r\n-------------RubyMultipartPost--\r\n\r\n" |
| headers: | |
| User-Agent: | |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:28 GMT |
| + | - Thu, 09 Mar 2017 14:25:08 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| - | - '2053' |
| + | - '2057' |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -23495,149 +23602,42 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"9016c18e56c8d3a628b3fa60063ffc84" |
| + | - W/"ea1641a32a149f00b6000d5a43abe5f7" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 6ef58683-6f29-487d-bf4a-9476604ca2ac |
| + | - 9ed67322-dabf-4421-a99b-4c3247ad86a1 |
| X-Runtime: | |
| - | - '0.085641' |
| + | - '0.059458' |
| Content-Length: | |
| - '382' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5763ae9487f6437d12223c53","created_at":"2016-06-17T08:02:28Z","updated_at":"2016-06-17T08:02:28Z","content_type":"stylesheet","local_path":"stylesheets/other/style.css","folder":"stylesheets/other","checksum":"ad2e36fdbc6b9ea164f875e19af0c90e","filename":"style.css","url":"/sites/5763ae8287f6437d12223b8f/theme/stylesheets/other/style.css","size":"1.42 |
| - | KB","raw_size":1452}' |
| - | http_version: |
| - | recorded_at: Fri, 17 Jun 2016 08:02:28 GMT |
| - | - request: |
| - | method: post |
| - | uri: http://localhost:3000/locomotive/api/v3/theme_assets.json |
| - | body: |
| - | encoding: ASCII-8BIT |
| - | string: !binary |- |
| - | LS0tLS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0DQpDb250ZW50LURpc3Bv |
| - | c2l0aW9uOiBmb3JtLWRhdGE7IG5hbWU9InRoZW1lX2Fzc2V0W3NvdXJjZV0i |
| - | OyBmaWxlbmFtZT0icmVib290LmNzcyINCkNvbnRlbnQtTGVuZ3RoOiAyMDQy |
| - | DQpDb250ZW50LVR5cGU6IGFwcGxpY2F0aW9uL29jdGV0LXN0cmVhbQ0KQ29u |
| - | dGVudC1UcmFuc2Zlci1FbmNvZGluZzogYmluYXJ5DQoNCmh0bWwsYm9keSxk |
| - | aXYsc3BhbixvYmplY3QsaWZyYW1lLGgxLGgyLGgzLGg0LGg1LGg2LHAsYmxv |
| - | Y2txdW90ZSxwcmUsYSxhYmJyLGFjcm9ueW0sYWRkcmVzcyxjb2RlLGRlbCxk |
| - | Zm4sZW0saW1nLHEsZGwsZHQsZGQsb2wsdWwsbGksZmllbGRzZXQsZm9ybSxs |
| - | YWJlbCxsZWdlbmQsdGFibGUsY2FwdGlvbix0Ym9keSx0Zm9vdCx0aGVhZCx0 |
| - | cix0aCx0ZHttYXJnaW46MDtwYWRkaW5nOjA7Ym9yZGVyOjA7Zm9udC13ZWln |
| - | aHQ6aW5oZXJpdDtmb250LXN0eWxlOmluaGVyaXQ7Zm9udC1zaXplOjEwMCU7 |
| - | Zm9udC1mYW1pbHk6aW5oZXJpdDt2ZXJ0aWNhbC1hbGlnbjpiYXNlbGluZX0u |
| - | Y29udGFpbmVye21hcmdpbjowIGF1dG87d2lkdGg6OTAwcHg7cGFkZGluZzoy |
| - | MHB4O3RleHQtYWxpZ246bGVmdH0ubGluZSwubGFzdFVuaXR7b3ZlcmZsb3c6 |
| - | aGlkZGVuO19vdmVyZmxvdzp2aXNpYmxlO196b29tOjF9LmxpbmUye196b29t |
| - | OjE7YmFja2dyb3VuZC1jb2xvcjojRkZGfS51bml0e2Zsb2F0OmxlZnQ7X3pv |
| - | b206MX0udW5pdEV4dHtmbG9hdDpyaWdodH0uc2l6ZTFvZjF7ZmxvYXQ6bm9u |
| - | ZX0uc2l6ZTFvZjJ7d2lkdGg6NTAlfS5zaXplMW9mM3t3aWR0aDozMy4zMzMz |
| - | MyV9LnNpemUyb2Yze3dpZHRoOjY2LjY2NjY2JX0uc2l6ZTFvZjR7d2lkdGg6 |
| - | MjUlfS5zaXplM29mNHt3aWR0aDo3NSV9LnNpemUxb2Y1e3dpZHRoOjIwJX0u |
| - | c2l6ZTJvZjV7d2lkdGg6NDAlfS5zaXplM29mNXt3aWR0aDo2MCV9LnNpemU0 |
| - | b2Y1e3dpZHRoOjgwJX0ubGFzdFVuaXR7ZmxvYXQ6bm9uZTtfcG9zaXRpb246 |
| - | cmVsYXRpdmU7X2xlZnQ6LTNweDtfbWFyZ2luLXJpZ2h0Oi0zcHg7d2lkdGg6 |
| - | YXV0b30ucGFkZGluZzEwcHh7cGFkZGluZzoxMHB4fS5wYWRkaW5nMTVweHtw |
| - | YWRkaW5nOjE1cHh9LnBhZGRpbmcyMHB4e3BhZGRpbmc6MjBweH0uY2xlYXJ7 |
| - | Y2xlYXI6Ym90aDtoZWlnaHQ6MXB4O2xpbmUtaGVpZ2h0OjFweH1ib2R5e2Zv |
| - | bnQtc2l6ZTo3NSU7bGluZS1oZWlnaHQ6MS41fWgxLGgyLGgzLGg0LGg1LGg2 |
| - | e2ZvbnQtd2VpZ2h0Om5vcm1hbH1oMXtmb250LXNpemU6My42ZW07bGluZS1o |
| - | ZWlnaHQ6MTttYXJnaW4tYm90dG9tOi41ZW07Y29sb3I6IzQzNDM0Mztmb250 |
| - | LXdlaWdodDpib2xkO2xldHRlci1zcGFjaW5nOi0wLjA1ZW19aDJ7Zm9udC1z |
| - | aXplOjJlbTttYXJnaW4tYm90dG9tOi43NWVtO2NvbG9yOiM0MzQzNDN9aDN7 |
| - | Zm9udC1zaXplOjEuNWVtO2xpbmUtaGVpZ2h0OjE7bWFyZ2luLWJvdHRvbTox |
| - | ZW19aDR7Zm9udC1zaXplOjEuMjVlbTtsaW5lLWhlaWdodDoxLjI1O21hcmdp |
| - | bjouNWVtIDAgLjVlbSAwO2NvbG9yOiM1NjU3NTc7Zm9udC13ZWlnaHQ6Ym9s |
| - | ZH1oNXtmb250LXNpemU6MS4zZW07Zm9udC13ZWlnaHQ6bm9ybWFsO2NvbG9y |
| - | OiM0MTQyNDB9aDZ7Zm9udC1zaXplOjEuM2VtO2ZvbnQtd2VpZ2h0OmJvbGQ7 |
| - | Zm9udC1zdHlsZTppdGFsaWM7Y29sb3I6IzQzNDM0MzttYXJnaW46LTIwcHgg |
| - | MCAyMHB4IDA7bGV0dGVyLXNwYWNpbmc6LTAuMDVlbX1we21hcmdpbjowIDAg |
| - | MS41ZW07Y29sb3I6IzQxNDI0MH0udGNlbnRlcnt0ZXh0LWFsaWduOmNlbnRl |
| - | cn0udHJpZ2h0e3RleHQtYWxpZ246cmlnaHR9LnRsZWZ0e3RleHQtYWxpZ246 |
| - | bGVmdH0udGp1c3RpZnl7dGV4dC1hbGlnbjpqdXN0aWZ5fS5mcmlnaHR7Zmxv |
| - | YXQ6cmlnaHR9Lm5vbWFyZ2lue21hcmdpbjowICFpbXBvcnRhbnR9Lm10MzB7 |
| - | bWFyZ2luLXRvcDozMHB4ICFpbXBvcnRhbnR9Lm10MjB7bWFyZ2luLXRvcDoy |
| - | MHB4ICFpbXBvcnRhbnR9Lm1iMjB7bWFyZ2luLWJvdHRvbToyMHB4ICFpbXBv |
| - | cnRhbnR9Lm0yMHttYXJnaW46MjBweCAhaW1wb3J0YW50fS5tdDEwe21hcmdp |
| - | bi10b3A6MTBweCAhaW1wb3J0YW50fS5tbDEwe21hcmdpbi1sZWZ0OjEwcHgg |
| - | IWltcG9ydGFudH0ubXIxMHttYXJnaW4tcmlnaHQ6MTBweCAhaW1wb3J0YW50 |
| - | fS5tYjEwe21hcmdpbi1ib3R0b206MTBweCAhaW1wb3J0YW50fS5tYjIwe21h |
| - | cmdpbi1ib3R0b206MjBweCAhaW1wb3J0YW50fS5tMTB7bWFyZ2luOjEwcHgg |
| - | IWltcG9ydGFudH3igIsgLm1iMzB7bWFyZ2luLWJvdHRvbTozMHB4ICFpbXBv |
| - | cnRhbnR9DQotLS0tLS0tLS0tLS0tUnVieU11bHRpcGFydFBvc3QNCkNvbnRl |
| - | bnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0idGhlbWVfYXNzZXRb |
| - | Zm9sZGVyXSINCg0Kc3R5bGVzaGVldHMNCi0tLS0tLS0tLS0tLS1SdWJ5TXVs |
| - | dGlwYXJ0UG9zdA0KQ29udGVudC1EaXNwb3NpdGlvbjogZm9ybS1kYXRhOyBu |
| - | YW1lPSJ0aGVtZV9hc3NldFtjaGVja3N1bV0iDQoNCmY0NGIxNDg3ZDljMGQ0 |
| - | OTBlNjY0ZTkxY2FmMGM3Y2Q4DQotLS0tLS0tLS0tLS0tUnVieU11bHRpcGFy |
| - | dFBvc3QNCkNvbnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0i |
| - | YXV0aF90b2tlbiINCg0KSHlxS3h5QkxtRUg5eF9HelluV1kNCi0tLS0tLS0t |
| - | LS0tLS1SdWJ5TXVsdGlwYXJ0UG9zdC0tDQoNCg== |
| - | headers: |
| - | User-Agent: |
| - | - HTTPClient/1.0 (2.7.2, ruby 2.2.3 (2015-08-18)) |
| - | Accept: |
| - | - application/json |
| - | Accept-Encoding: |
| - | - gzip,deflate |
| - | Date: |
| - | - Fri, 17 Jun 2016 08:02:29 GMT |
| - | X-Locomotive-Account-Email: |
| - | - admin@locomotivecms.com |
| - | X-Locomotive-Account-Token: |
| - | - HyqKxyBLmEH9x_GzYnWY |
| - | X-Locomotive-Site-Handle: |
| - | - gentle-desert-808 |
| - | Content-Type: |
| - | - multipart/form-data; boundary=-----------RubyMultipartPost |
| - | Content-Length: |
| - | - '2638' |
| - | response: |
| - | status: |
| - | code: 201 |
| - | message: Created |
| - | headers: |
| - | Content-Type: |
| - | - application/json |
| - | Etag: |
| - | - W/"ba570f0d27f1e874a5a82cefa87479cb" |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | X-Request-Id: |
| - | - 4aa0562f-6a0f-4239-b63f-264f8ed18475 |
| - | X-Runtime: |
| - | - '0.037944' |
| - | Content-Length: |
| - | - '367' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"_id":"5763ae9587f6437d12223c54","created_at":"2016-06-17T08:02:29Z","updated_at":"2016-06-17T08:02:29Z","content_type":"stylesheet","local_path":"stylesheets/reboot.css","folder":"stylesheets","checksum":"f44b1487d9c0d490e664e91caf0c7cd8","filename":"reboot.css","url":"/sites/5763ae8287f6437d12223b8f/theme/stylesheets/reboot.css","size":"1.99 |
| - | KB","raw_size":2042}' |
| + | string: '{"_id":"58c165c487f64357b6203452","created_at":"2017-03-09T14:25:08Z","updated_at":"2017-03-09T14:25:08Z","content_type":"stylesheet","local_path":"stylesheets/other/style.css","folder":"stylesheets/other","checksum":"65b079bcb703b1726b6f7c106c7d26ac","filename":"style.css","url":"/sites/58c165b387f64357b620338d/theme/stylesheets/other/style.css","size":"1.42 |
| + | KB","raw_size":1456}' |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:29 GMT |
| + | recorded_at: Thu, 09 Mar 2017 14:25:08 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/translations/powered_by.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=HyqKxyBLmEH9x_GzYnWY&translation%5Bkey%5D=powered_by&translation%5Bvalues%5D%5Ben%5D=Powered+by&translation%5Bvalues%5D%5Bfr%5D=Propuls%C3%A9+par |
| + | string: auth_token=2A9iTQyoACHbA4eAVLCH&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.2, ruby 2.2.3 (2015-08-18)) |
| + | - Faraday v0.9.2 |
| Accept: | |
| - application/json | |
| Accept-Encoding: | |
| - gzip,deflate | |
| Date: | |
| - | - Fri, 17 Jun 2016 08:02:29 GMT |
| + | - Thu, 09 Mar 2017 14:25:08 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - HyqKxyBLmEH9x_GzYnWY |
| + | - 2A9iTQyoACHbA4eAVLCH |
| X-Locomotive-Site-Handle: | |
| - | - gentle-desert-808 |
| + | - benevolent-waterfall-850 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| response: | |
| @@ | @@ -23648,22 +23648,22 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"39911e6fc9310f1bbfe310ff4a308b94" |
| + | - W/"05a38cec925ee4d835d03875926cb796" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 72719ccf-dc25-4b86-b2ec-cd667ca5d283 |
| + | - 6db985e4-31ec-4653-8c1d-338a9ba8ffcb |
| X-Runtime: | |
| - | - '0.050037' |
| + | - '0.049891' |
| Content-Length: | |
| - '175' | |
| body: | |
| encoding: ASCII-8BIT | |
| string: !binary |- | |
| - | eyJfaWQiOiI1NzYzYWU5NTg3ZjY0MzdkMTIyMjNjNTUiLCJjcmVhdGVkX2F0 |
| - | IjoiMjAxNi0wNi0xN1QwODowMjoyOVoiLCJ1cGRhdGVkX2F0IjoiMjAxNi0w |
| - | Ni0xN1QwODowMjoyOVoiLCJrZXkiOiJwb3dlcmVkX2J5IiwidmFsdWVzIjp7 |
| + | eyJfaWQiOiI1OGMxNjVjNDg3ZjY0MzU3YjYyMDM0NTMiLCJjcmVhdGVkX2F0 |
| + | IjoiMjAxNy0wMy0wOVQxNDoyNTowOFoiLCJ1cGRhdGVkX2F0IjoiMjAxNy0w |
| + | My0wOVQxNDoyNTowOFoiLCJrZXkiOiJwb3dlcmVkX2J5IiwidmFsdWVzIjp7 |
| ImVuIjoiUG93ZXJlZCBieSIsImZyIjoiUHJvcHVsc8OpIHBhciJ9fQ== | |
| http_version: | |
| - | recorded_at: Fri, 17 Jun 2016 08:02:29 GMT |
| - | recorded_with: VCR 3.0.1 |
| + | recorded_at: Thu, 09 Mar 2017 14:25:08 GMT |
| + | recorded_with: VCR 3.0.3 |
spec/integration/cassettes/pull.yml
+0
-605
| @@ | @@ -1,605 +0,0 @@ |
| - | --- |
| - | http_interactions: |
| - | - request: |
| - | method: post |
| - | uri: http://sample.example.com:3000/locomotive/api/tokens.json |
| - | body: |
| - | encoding: UTF-8 |
| - | string: email=admin%40locomotivecms.com&password=locomotive |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:16 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Location: |
| - | - http://sample.example.com:3000/locomotive/ |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"d1a90b45e031fb4f87663184c2a67dbd"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=7FsbH4bAKgxjSjBqRjSbfW0jGbc; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - c9a037d922e36ceab77b67fd60df3f1e |
| - | X-Runtime: |
| - | - '0.036712' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"token":"iaWvtP5PhmnyKypXpLbM"}' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:16 GMT |
| - | - request: |
| - | method: get |
| - | uri: http://sample.example.com:3000/locomotive/api/current_site.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: US-ASCII |
| - | string: '' |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:16 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"44c3f51a8b65cd145a65bd507037a52f"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=ee6akf6apTreFuVEtChqz_5Cr6o; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - 863cd4b64f4bdd041d455e8a67e3baa9 |
| - | X-Runtime: |
| - | - '0.041135' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"id":"5238710587f6431df7000006","_id":"5238710587f6431df7000006","created_at":"2013-09-17T15:11:01Z","updated_at":"2013-09-17T15:11:33Z","name":"locomotive","locales":["en","es"],"timezone":"UTC","subdomain":"sample","domains":["sample.example.com"],"domains_without_subdomain":[],"domain_name":"example.com","memberships":[{"id":"5238710587f6431df7000009","_id":"5238710587f6431df7000009","role":"admin","role_name":"Administrator","can_update":false,"grant_admin":true,"account_id":"5238710587f6431df7000001","name":"Admin","email":"admin@locomotivecms.com"}]}' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:16 GMT |
| - | - request: |
| - | method: get |
| - | uri: http://sample.example.com:3000/locomotive/api/current_site.json?auth_token=iaWvtP5PhmnyKypXpLbM&locale=es |
| - | body: |
| - | encoding: US-ASCII |
| - | string: '' |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:16 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"f3da36b3e0ddaffbc93f97aaae09ae52"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=bCA-MmvjiiXKLvxdvI7uKOQ8ERM; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - 704fee212896de6aab7877f80a1496b3 |
| - | X-Runtime: |
| - | - '0.040516' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"id":"5238710587f6431df7000006","_id":"5238710587f6431df7000006","created_at":"2013-09-17T15:11:01Z","updated_at":"2013-09-17T15:11:33Z","name":"locomotive","locales":["en","es"],"timezone":"UTC","subdomain":"sample","domains":["sample.example.com"],"domains_without_subdomain":[],"domain_name":"example.com","memberships":[{"id":"5238710587f6431df7000009","_id":"5238710587f6431df7000009","role":"admin","role_name":"Administrador","can_update":false,"grant_admin":true,"account_id":"5238710587f6431df7000001","name":"Admin","email":"admin@locomotivecms.com"}]}' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:16 GMT |
| - | - request: |
| - | method: get |
| - | uri: http://sample.example.com:3000/locomotive/api/content_assets.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: US-ASCII |
| - | string: '' |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:16 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"d751713988987e9331980363e24189ce"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=NoTrZItzrjWEx6zkOl12mE-Of74; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - fa80e875ffddf7535b6dcbf788e9d11f |
| - | X-Runtime: |
| - | - '0.097374' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '[]' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:16 GMT |
| - | - request: |
| - | method: get |
| - | uri: http://sample.example.com:3000/locomotive/api/snippets.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: US-ASCII |
| - | string: '' |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:16 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"d751713988987e9331980363e24189ce"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=YqoQOI94i6WImV7l8m3iBdbDvqY; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - c804f5386d84109abb4bdb7969088e53 |
| - | X-Runtime: |
| - | - '0.038155' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '[]' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:16 GMT |
| - | - request: |
| - | method: get |
| - | uri: http://sample.example.com:3000/locomotive/api/content_types.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: US-ASCII |
| - | string: '' |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:16 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"80558e8d8878e660f5cfd6b06152de50"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=sJHSyzsJRwo4YIHE6dCFRaFyJ1A; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - c614511770e53088c96043ba149bd48f |
| - | X-Runtime: |
| - | - '0.043328' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '[{"id":"5238712587f643884e000001","_id":"5238712587f643884e000001","created_at":"2013-09-17T15:11:33Z","updated_at":"2013-09-17T15:11:33Z","name":"Products","slug":"products","entries_custom_fields":[{"id":"5238712587f643884e000002","_id":"5238712587f643884e000002","name":"name","label":"name","type":"string","required":true,"localized":true,"unique":false,"position":0},{"id":"5238712587f643884e000003","_id":"5238712587f643884e000003","name":"available","label":"available","type":"boolean","required":false,"localized":false,"unique":false,"position":1}],"description":"My |
| - | products collection","label_field_name":"name","order_by":"created_at","order_direction":"asc","order_by_field_name":"created_at","public_submission_enabled":false,"public_submission_account_emails":[]}]' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:16 GMT |
| - | - request: |
| - | method: get |
| - | uri: http://sample.example.com:3000/locomotive/api/content_types/products/entries.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: US-ASCII |
| - | string: '' |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:16 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"83dfd1167e0b94465530e648860cdcda"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=PtfyO6vYHRNr83z51nlhMvK23yQ; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - 7e8f978f3c500588268395eac2c93659 |
| - | X-Runtime: |
| - | - '0.050445' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '[{"id":"5238712587f643884e000004","_id":"5238712587f643884e000004","created_at":"2013-09-17T15:11:33Z","updated_at":"2013-09-17T15:11:33Z","_label":"Useless |
| - | stuff","_slug":"useless-stuff","_position":0,"_visible":true,"content_type_slug":"products","translated_in":["en"],"name":"Useless |
| - | stuff","available":true}]' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:16 GMT |
| - | - request: |
| - | method: get |
| - | uri: http://sample.example.com:3000/locomotive/api/content_types/products/entries/5238712587f643884e000004.json?auth_token=iaWvtP5PhmnyKypXpLbM&locale=en |
| - | body: |
| - | encoding: US-ASCII |
| - | string: '' |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:16 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"30d49d7b032f30c6e560befd964e9d1b"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=ZZBH3XuOUost_vmm43JBys-KIhg; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - 3d61f6ee3d2663d4edb1edbe290dfb42 |
| - | X-Runtime: |
| - | - '0.034323' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"id":"5238712587f643884e000004","_id":"5238712587f643884e000004","created_at":"2013-09-17T15:11:33Z","updated_at":"2013-09-17T15:11:33Z","_label":"Useless |
| - | stuff","_slug":"useless-stuff","_position":0,"_visible":true,"content_type_slug":"products","translated_in":["en"],"name":"Useless |
| - | stuff","available":true}' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:16 GMT |
| - | - request: |
| - | method: get |
| - | uri: http://sample.example.com:3000/locomotive/api/pages.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: US-ASCII |
| - | string: '' |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:16 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"a19c8f4823366aaef7a28e95582c9b2d"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=USaWfTUtHpU3_9x1qPCNSXC49H0; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - 6c6467a58573a93b8e068c44ad2ddece |
| - | X-Runtime: |
| - | - '0.045967' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '[{"id":"5238710587f6431df7000007","_id":"5238710587f6431df7000007","created_at":"2013-09-17T15:11:01Z","updated_at":"2013-09-17T15:11:34Z","title":"Home |
| - | page","slug":"index","position":0,"response_type":"text/html","cache_strategy":"none","redirect":false,"redirect_type":301,"listed":true,"published":true,"templatized":false,"templatized_from_parent":false,"fullpath":"index","localized_fullpaths":{"en":"","es":"es"},"depth":0,"translated_in":["en","es"],"raw_template":"{% |
| - | block content %}\r\n New content of the home page\r\n{% endblock %}\r\n\r\n","escaped_raw_template":"{% |
| - | block content %}\r\n New content of the home page\r\n{% endblock %}\r\n\r\n","editable_elements":[]},{"id":"5238712687f643884e000006","_id":"5238712687f643884e000006","created_at":"2013-09-17T15:11:34Z","updated_at":"2013-09-17T15:11:34Z","title":"translated","slug":"translated","parent_id":"5238710587f6431df7000007","position":0,"response_type":"text/html","cache_strategy":"none","redirect":false,"redirect_type":301,"listed":true,"published":true,"templatized":false,"templatized_from_parent":false,"fullpath":"translated","localized_fullpaths":{"en":"translated","es":"es/translated"},"depth":1,"translated_in":["en"],"raw_template":"{{ |
| - | ''hello_world'' | translate}}","escaped_raw_template":"{{ 'hello_world' |
| - | | translate}}","editable_elements":[]},{"id":"5238712687f643884e000008","_id":"5238712687f643884e000008","created_at":"2013-09-17T15:11:34Z","updated_at":"2013-09-17T15:11:34Z","title":"Latest","slug":"latest","parent_id":"5238712687f643884e000007","position":0,"response_type":"text/html","cache_strategy":"none","redirect":false,"redirect_type":301,"listed":true,"published":true,"templatized":false,"templatized_from_parent":false,"fullpath":"products/latest","localized_fullpaths":{"en":"products/latest","es":"es/products/latest"},"depth":2,"translated_in":["en"],"raw_template":"{% |
| - | extends parent %}\r\n{% block content %}\r\n The name of the latest product |
| - | is: {{ contents.products.last.name }}\r\n{% endblock %}","escaped_raw_template":"{% |
| - | extends parent %}\r\n{% block content %}\r\n The name of the latest product |
| - | is: {{ contents.products.last.name }}\r\n{% endblock %}","editable_elements":[]},{"id":"5238710587f6431df7000008","_id":"5238710587f6431df7000008","created_at":"2013-09-17T15:11:01Z","updated_at":"2013-09-17T15:11:34Z","title":"Page |
| - | not found","slug":"404","position":1,"response_type":"text/html","cache_strategy":"none","redirect":false,"redirect_type":301,"listed":true,"published":true,"templatized":false,"templatized_from_parent":false,"fullpath":"404","localized_fullpaths":{"en":"404","es":"es/404"},"depth":0,"translated_in":["en","es"],"raw_template":"Content |
| - | of the 404 page","escaped_raw_template":"Content of the 404 page","editable_elements":[]},{"id":"5238712687f643884e000007","_id":"5238712687f643884e000007","created_at":"2013-09-17T15:11:34Z","updated_at":"2013-09-17T15:11:34Z","title":"Products","slug":"products","parent_id":"5238710587f6431df7000007","position":1,"response_type":"text/html","cache_strategy":"none","redirect":false,"redirect_type":301,"listed":true,"published":true,"templatized":false,"templatized_from_parent":false,"fullpath":"products","localized_fullpaths":{"en":"products","es":"es/products"},"depth":1,"translated_in":["en","es"],"raw_template":"{% |
| - | extends parent %}","escaped_raw_template":"{% extends parent %}","editable_elements":[],"seo_title":"Search |
| - | friendly products","meta_keywords":"fancy, products, keywords","meta_description":"Fancy |
| - | products description"}]' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:16 GMT |
| - | - request: |
| - | method: get |
| - | uri: http://sample.example.com:3000/locomotive/api/pages/5238710587f6431df7000007.json?auth_token=iaWvtP5PhmnyKypXpLbM&locale=es |
| - | body: |
| - | encoding: US-ASCII |
| - | string: '' |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:16 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"6499def2ece0125f6b4cebb93d09abc9"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=os1IdX2Qa7j3cjE7EBjxmPtdlks; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - d6b9a31f4195e92587826c5a5e7428d7 |
| - | X-Runtime: |
| - | - '0.063026' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"id":"5238710587f6431df7000007","_id":"5238710587f6431df7000007","created_at":"2013-09-17T15:11:01Z","updated_at":"2013-09-17T15:11:34Z","title":"P\u00e1gina |
| - | de inicio","slug":"index","position":0,"response_type":"text/html","cache_strategy":"none","redirect":false,"redirect_type":301,"listed":true,"published":true,"templatized":false,"templatized_from_parent":false,"fullpath":"index","localized_fullpaths":{"en":"","es":"es"},"depth":0,"translated_in":["en","es"],"raw_template":"New |
| - | content of the home page\r\n","escaped_raw_template":"New content of the home |
| - | page\r\n","editable_elements":[]}' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:16 GMT |
| - | - request: |
| - | method: get |
| - | uri: http://sample.example.com:3000/locomotive/api/pages/5238710587f6431df7000008.json?auth_token=iaWvtP5PhmnyKypXpLbM&locale=es |
| - | body: |
| - | encoding: US-ASCII |
| - | string: '' |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:16 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"d04724071150d907283a4aea3a16f368"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=6jSJJJ1yxeA2UbMdjX9DUHVV7PQ; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - 0f7ab05f0fdcdd19fa113ac048c3b2d2 |
| - | X-Runtime: |
| - | - '0.055709' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"id":"5238710587f6431df7000008","_id":"5238710587f6431df7000008","created_at":"2013-09-17T15:11:01Z","updated_at":"2013-09-17T15:11:34Z","title":"P\u00e1gina |
| - | no encontrada","slug":"404","position":1,"response_type":"text/html","cache_strategy":"none","redirect":false,"redirect_type":301,"listed":true,"published":true,"templatized":false,"templatized_from_parent":false,"fullpath":"404","localized_fullpaths":{"en":"404","es":"es/404"},"depth":0,"translated_in":["en","es"],"raw_template":"Content |
| - | of the 404 page","escaped_raw_template":"Content of the 404 page","editable_elements":[]}' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:16 GMT |
| - | - request: |
| - | method: get |
| - | uri: http://sample.example.com:3000/locomotive/api/pages/5238712687f643884e000007.json?auth_token=iaWvtP5PhmnyKypXpLbM&locale=es |
| - | body: |
| - | encoding: US-ASCII |
| - | string: '' |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:17 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"df564c6fd92a1e7b3d311fc1183d251b"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=p-z-i3E95clgJIglGSO9y66eiyw; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - e6ee7287990b9599c362b0fcfcd0437b |
| - | X-Runtime: |
| - | - '0.052470' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"id":"5238712687f643884e000007","_id":"5238712687f643884e000007","created_at":"2013-09-17T15:11:34Z","updated_at":"2013-09-17T15:11:34Z","title":"Products","slug":"products","parent_id":"5238710587f6431df7000007","position":1,"response_type":"text/html","cache_strategy":"none","redirect":false,"redirect_type":301,"listed":true,"published":true,"templatized":false,"templatized_from_parent":false,"fullpath":"products","localized_fullpaths":{"en":"products","es":"es/products"},"depth":1,"translated_in":["en","es"],"raw_template":"{% |
| - | extends parent %}","escaped_raw_template":"{% extends parent %}","editable_elements":[],"seo_title":"Productos |
| - | SEO","meta_keywords":"palabras, clave, productos","meta_description":"Descripci\u00f3n |
| - | molona de los productos"}' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:17 GMT |
| - | - request: |
| - | method: get |
| - | uri: http://sample.example.com:3000/locomotive/api/theme_assets.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: US-ASCII |
| - | string: '' |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:17 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"d751713988987e9331980363e24189ce"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=XdqVrog3Rbgk2OmJFaRYw-DcVmA; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - c4ac141a9bc254e03bb98bf4eb4414ba |
| - | X-Runtime: |
| - | - '0.047978' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '[]' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:17 GMT |
| - | - request: |
| - | method: get |
| - | uri: http://sample.example.com:3000/locomotive/api/translations.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: US-ASCII |
| - | string: '' |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:17 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"5c1b51393d2233a4df57efd63547d153"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=hl2S9ykpEvEVXdsdeRZidiQnTww; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - bb32086f3b95d4bf31ff3d7f90e44867 |
| - | X-Runtime: |
| - | - '0.097767' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '[{"id":"5238712587f643884e000005","_id":"5238712587f643884e000005","created_at":"2013-09-17T15:11:33Z","updated_at":"2013-09-17T15:11:33Z","key":"hello_world","values":{"en":"Hello |
| - | world!","es":"\u00a1Hola, Mundo!"}}]' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:17 GMT |
| - | - request: |
| - | method: post |
| - | uri: http://sample.example.com:3000/locomotive/api/tokens.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: UTF-8 |
| - | string: email=admin%40locomotivecms.com&password=locomotive |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:28 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Location: |
| - | - http://sample.example.com:3000/locomotive/ |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"d1a90b45e031fb4f87663184c2a67dbd"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=bkPZH81b3iow644MLCcIS1qf5r0; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - 5d8899400ec6f3e4ebe69c8e264fb52b |
| - | X-Runtime: |
| - | - '0.040288' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"token":"iaWvtP5PhmnyKypXpLbM"}' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:28 GMT |
| - | recorded_with: VCR 2.5.0 |
spec/integration/cassettes/push.yml
+0
-823
| @@ | @@ -1,823 +0,0 @@ |
| - | --- |
| - | http_interactions: |
| - | - request: |
| - | method: post |
| - | uri: http://sample.example.com:3000/locomotive/api/tokens.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: UTF-8 |
| - | string: email=admin%40locomotivecms.com&password=locomotive |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:29 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Location: |
| - | - http://sample.example.com:3000/locomotive/ |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"d1a90b45e031fb4f87663184c2a67dbd"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=fs_OVk1gY-Z4gywI8nuSyzxqi9k; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - d9aebd9735de14b3281c96755a8fbcdf |
| - | X-Runtime: |
| - | - '0.033607' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"token":"iaWvtP5PhmnyKypXpLbM"}' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:29 GMT |
| - | - request: |
| - | method: get |
| - | uri: http://sample.example.com:3000/locomotive/api/current_site.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: US-ASCII |
| - | string: '' |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:29 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"44c3f51a8b65cd145a65bd507037a52f"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=c9X9XRkfZMxsJlLMKeKOikF9xiY; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - 8bbd1c22fff0613611ab463c29bcf6e3 |
| - | X-Runtime: |
| - | - '0.034084' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"id":"5238710587f6431df7000006","_id":"5238710587f6431df7000006","created_at":"2013-09-17T15:11:01Z","updated_at":"2013-09-17T15:11:33Z","name":"locomotive","locales":["en","es"],"timezone":"UTC","subdomain":"sample","domains":["sample.example.com"],"domains_without_subdomain":[],"domain_name":"example.com","memberships":[{"id":"5238710587f6431df7000009","_id":"5238710587f6431df7000009","role":"admin","role_name":"Administrator","can_update":false,"grant_admin":true,"account_id":"5238710587f6431df7000001","name":"Admin","email":"admin@locomotivecms.com"}]}' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:29 GMT |
| - | - request: |
| - | method: put |
| - | uri: http://sample.example.com:3000/locomotive/api/sites/5238710587f6431df7000006.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: UTF-8 |
| - | string: site[name]=locomotive&site[locales][]=en&site[locales][]=es&site[subdomain]=sample&site[domains][]=sample.example.com&site[timezone]=UTC&locale=en |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:29 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | X-Message: |
| - | - '"Site%20was%20successfully%20updated."' |
| - | X-Message-Type: |
| - | - notice |
| - | Location: |
| - | - http://sample.example.com:3000/locomotive/sites/5238710587f6431df7000006 |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"44c3f51a8b65cd145a65bd507037a52f"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=Cx2V5L0kuHEkwGXt7I1SLqA97dg; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - 83e85254e7ce985b1dc3ed4266b3fec2 |
| - | X-Runtime: |
| - | - '0.042342' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"id":"5238710587f6431df7000006","_id":"5238710587f6431df7000006","created_at":"2013-09-17T15:11:01Z","updated_at":"2013-09-17T15:11:33Z","name":"locomotive","locales":["en","es"],"timezone":"UTC","subdomain":"sample","domains":["sample.example.com"],"domains_without_subdomain":[],"domain_name":"example.com","memberships":[{"id":"5238710587f6431df7000009","_id":"5238710587f6431df7000009","role":"admin","role_name":"Administrator","can_update":false,"grant_admin":true,"account_id":"5238710587f6431df7000001","name":"Admin","email":"admin@locomotivecms.com"}]}' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:29 GMT |
| - | - request: |
| - | method: put |
| - | uri: http://sample.example.com:3000/locomotive/api/sites/5238710587f6431df7000006.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: UTF-8 |
| - | string: site[name]=locomotive&site[locales][]=en&site[locales][]=es&site[subdomain]=sample&site[domains][]=sample.example.com&site[timezone]=UTC&locale=es |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:29 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Location: |
| - | - http://sample.example.com:3000/locomotive/sites/5238710587f6431df7000006 |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"f3da36b3e0ddaffbc93f97aaae09ae52"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=DIIGKjnrz_Jb8mmsa1UA8K3q_7A; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - e4f383a6a9619da9e675c7710be0e56f |
| - | X-Runtime: |
| - | - '0.033201' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"id":"5238710587f6431df7000006","_id":"5238710587f6431df7000006","created_at":"2013-09-17T15:11:01Z","updated_at":"2013-09-17T15:11:33Z","name":"locomotive","locales":["en","es"],"timezone":"UTC","subdomain":"sample","domains":["sample.example.com"],"domains_without_subdomain":[],"domain_name":"example.com","memberships":[{"id":"5238710587f6431df7000009","_id":"5238710587f6431df7000009","role":"admin","role_name":"Administrador","can_update":false,"grant_admin":true,"account_id":"5238710587f6431df7000001","name":"Admin","email":"admin@locomotivecms.com"}]}' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:29 GMT |
| - | - request: |
| - | method: get |
| - | uri: http://sample.example.com:3000/locomotive/api/snippets.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: US-ASCII |
| - | string: '' |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:29 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"d751713988987e9331980363e24189ce"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=cUQPBrl6XSD8IUzwVq_YGmsukTs; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - c84820f0370f21235a3cea8b6ebf859a |
| - | X-Runtime: |
| - | - '0.043700' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '[]' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:29 GMT |
| - | - request: |
| - | method: get |
| - | uri: http://sample.example.com:3000/locomotive/api/content_types.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: US-ASCII |
| - | string: '' |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:29 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"80558e8d8878e660f5cfd6b06152de50"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=hxdOku9hSqQUYilRG9-NkW9XEH0; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - 6364cbf710cadec38b6f26305b5adf83 |
| - | X-Runtime: |
| - | - '0.044222' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '[{"id":"5238712587f643884e000001","_id":"5238712587f643884e000001","created_at":"2013-09-17T15:11:33Z","updated_at":"2013-09-17T15:11:33Z","name":"Products","slug":"products","entries_custom_fields":[{"id":"5238712587f643884e000002","_id":"5238712587f643884e000002","name":"name","label":"name","type":"string","required":true,"localized":true,"unique":false,"position":0},{"id":"5238712587f643884e000003","_id":"5238712587f643884e000003","name":"available","label":"available","type":"boolean","required":false,"localized":false,"unique":false,"position":1}],"description":"My |
| - | products collection","label_field_name":"name","order_by":"created_at","order_direction":"asc","order_by_field_name":"created_at","public_submission_enabled":false,"public_submission_account_emails":[]}]' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:29 GMT |
| - | - request: |
| - | method: put |
| - | uri: http://sample.example.com:3000/locomotive/api/content_types/5238712587f643884e000001.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: UTF-8 |
| - | string: content_type[name]=Products&content_type[description]=My%20products%20collection&content_type[slug]=products&content_type[label_field_name]=name&content_type[order_by]=created_at&content_type[order_direction]=asc&content_type[entries_custom_fields][][label]=name&content_type[entries_custom_fields][][name]=name&content_type[entries_custom_fields][][type]=string&content_type[entries_custom_fields][][position]=0&content_type[entries_custom_fields][][required]=true&content_type[entries_custom_fields][][unique]=false&content_type[entries_custom_fields][][localized]=true&content_type[entries_custom_fields][][_id]=5238712587f643884e000002&content_type[entries_custom_fields][][label]=available&content_type[entries_custom_fields][][name]=available&content_type[entries_custom_fields][][type]=boolean&content_type[entries_custom_fields][][position]=1&content_type[entries_custom_fields][][required]=false&content_type[entries_custom_fields][][unique]=false&content_type[entries_custom_fields][][localized]=false&content_type[entries_custom_fields][][_id]=5238712587f643884e000003 |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:29 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | X-Message: |
| - | - '"Content%20type%20was%20successfully%20updated."' |
| - | X-Message-Type: |
| - | - notice |
| - | Location: |
| - | - http://sample.example.com:3000/locomotive/api/content_types |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"f42f53cd9530a868386f8ccd7f24139f"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=EBdnidWHznKcsBlsV0UrN0tk18U; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - a41721005f01fc520cf7f444c2168468 |
| - | X-Runtime: |
| - | - '0.061994' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"id":"5238712587f643884e000001","_id":"5238712587f643884e000001","created_at":"2013-09-17T15:11:33Z","updated_at":"2013-09-17T15:11:33Z","name":"Products","slug":"products","entries_custom_fields":[{"id":"5238712587f643884e000002","_id":"5238712587f643884e000002","name":"name","label":"name","type":"string","required":true,"localized":true,"unique":false,"position":0},{"id":"5238712587f643884e000003","_id":"5238712587f643884e000003","name":"available","label":"available","type":"boolean","required":false,"localized":false,"unique":false,"position":1}],"description":"My |
| - | products collection","label_field_name":"name","order_by":"created_at","order_direction":"asc","order_by_field_name":"created_at","public_submission_enabled":false,"public_submission_account_emails":[]}' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:29 GMT |
| - | - request: |
| - | method: get |
| - | uri: http://sample.example.com:3000/locomotive/api/translations.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: US-ASCII |
| - | string: '' |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:29 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"5c1b51393d2233a4df57efd63547d153"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=98w4xa3hxpDA5QJ1hqg8LpXhAxA; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - 4db2fadb99be65ba3a142ddf93a95247 |
| - | X-Runtime: |
| - | - '0.032204' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '[{"id":"5238712587f643884e000005","_id":"5238712587f643884e000005","created_at":"2013-09-17T15:11:33Z","updated_at":"2013-09-17T15:11:33Z","key":"hello_world","values":{"en":"Hello |
| - | world!","es":"\u00a1Hola, Mundo!"}}]' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:29 GMT |
| - | - request: |
| - | method: put |
| - | uri: http://sample.example.com:3000/locomotive/api/translations/5238712587f643884e000005.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: UTF-8 |
| - | string: translation[key]=hello_world&translation[values][en]=Hello%20world!&translation[values][es]=%C2%A1Hola%2C%20Mundo! |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:29 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | X-Message: |
| - | - '"Translation%20was%20successfully%20updated."' |
| - | X-Message-Type: |
| - | - notice |
| - | Location: |
| - | - /locomotive/api/translations/5238712587f643884e000005 |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"6e258b019216e6110fa565858cd7caed"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=cjpnyxUPBgDS74JFiVY3b1xspNU; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - 0a37b1f12e447e0215ef983e9443930f |
| - | X-Runtime: |
| - | - '0.045002' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"id":"5238712587f643884e000005","_id":"5238712587f643884e000005","created_at":"2013-09-17T15:11:33Z","updated_at":"2013-09-17T15:11:33Z","key":"hello_world","values":{"en":"Hello |
| - | world!","es":"\u00a1Hola, Mundo!"}}' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:29 GMT |
| - | - request: |
| - | method: get |
| - | uri: http://sample.example.com:3000/locomotive/api/pages.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: US-ASCII |
| - | string: '' |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:29 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"a19c8f4823366aaef7a28e95582c9b2d"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=PXfqBBIYd5_C0wvN1XiAFcJyJnA; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - 9b7d0d6fadd5361f5a9b1ca5a499e6b2 |
| - | X-Runtime: |
| - | - '0.043180' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '[{"id":"5238710587f6431df7000007","_id":"5238710587f6431df7000007","created_at":"2013-09-17T15:11:01Z","updated_at":"2013-09-17T15:11:34Z","title":"Home |
| - | page","slug":"index","position":0,"response_type":"text/html","cache_strategy":"none","redirect":false,"redirect_type":301,"listed":true,"published":true,"templatized":false,"templatized_from_parent":false,"fullpath":"index","localized_fullpaths":{"en":"","es":"es"},"depth":0,"translated_in":["en","es"],"raw_template":"{% |
| - | block content %}\r\n New content of the home page\r\n{% endblock %}\r\n\r\n","escaped_raw_template":"{% |
| - | block content %}\r\n New content of the home page\r\n{% endblock %}\r\n\r\n","editable_elements":[]},{"id":"5238712687f643884e000006","_id":"5238712687f643884e000006","created_at":"2013-09-17T15:11:34Z","updated_at":"2013-09-17T15:11:34Z","title":"translated","slug":"translated","parent_id":"5238710587f6431df7000007","position":0,"response_type":"text/html","cache_strategy":"none","redirect":false,"redirect_type":301,"listed":true,"published":true,"templatized":false,"templatized_from_parent":false,"fullpath":"translated","localized_fullpaths":{"en":"translated","es":"es/translated"},"depth":1,"translated_in":["en"],"raw_template":"{{ |
| - | ''hello_world'' | translate}}","escaped_raw_template":"{{ 'hello_world' |
| - | | translate}}","editable_elements":[]},{"id":"5238712687f643884e000008","_id":"5238712687f643884e000008","created_at":"2013-09-17T15:11:34Z","updated_at":"2013-09-17T15:11:34Z","title":"Latest","slug":"latest","parent_id":"5238712687f643884e000007","position":0,"response_type":"text/html","cache_strategy":"none","redirect":false,"redirect_type":301,"listed":true,"published":true,"templatized":false,"templatized_from_parent":false,"fullpath":"products/latest","localized_fullpaths":{"en":"products/latest","es":"es/products/latest"},"depth":2,"translated_in":["en"],"raw_template":"{% |
| - | extends parent %}\r\n{% block content %}\r\n The name of the latest product |
| - | is: {{ contents.products.last.name }}\r\n{% endblock %}","escaped_raw_template":"{% |
| - | extends parent %}\r\n{% block content %}\r\n The name of the latest product |
| - | is: {{ contents.products.last.name }}\r\n{% endblock %}","editable_elements":[]},{"id":"5238710587f6431df7000008","_id":"5238710587f6431df7000008","created_at":"2013-09-17T15:11:01Z","updated_at":"2013-09-17T15:11:34Z","title":"Page |
| - | not found","slug":"404","position":1,"response_type":"text/html","cache_strategy":"none","redirect":false,"redirect_type":301,"listed":true,"published":true,"templatized":false,"templatized_from_parent":false,"fullpath":"404","localized_fullpaths":{"en":"404","es":"es/404"},"depth":0,"translated_in":["en","es"],"raw_template":"Content |
| - | of the 404 page","escaped_raw_template":"Content of the 404 page","editable_elements":[]},{"id":"5238712687f643884e000007","_id":"5238712687f643884e000007","created_at":"2013-09-17T15:11:34Z","updated_at":"2013-09-17T15:11:34Z","title":"Products","slug":"products","parent_id":"5238710587f6431df7000007","position":1,"response_type":"text/html","cache_strategy":"none","redirect":false,"redirect_type":301,"listed":true,"published":true,"templatized":false,"templatized_from_parent":false,"fullpath":"products","localized_fullpaths":{"en":"products","es":"es/products"},"depth":1,"translated_in":["en","es"],"raw_template":"{% |
| - | extends parent %}","escaped_raw_template":"{% extends parent %}","editable_elements":[],"seo_title":"Search |
| - | friendly products","meta_keywords":"fancy, products, keywords","meta_description":"Fancy |
| - | products description"}]' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:29 GMT |
| - | - request: |
| - | method: put |
| - | uri: http://sample.example.com:3000/locomotive/api/pages/5238710587f6431df7000007.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: UTF-8 |
| - | string: page[title]=Home%20page&page[redirect_type]=301&page[listed]=true&page[templatized]=false&page[published]=true&page[cache_strategy]=none&page[response_type]=text%2Fhtml&page[position]=0&page[raw_template]=%7B%25%20block%20content%20%25%7D%0D%0A%20%20New%20content%20of%20the%20home%20page%0D%0A%7B%25%20endblock%20%25%7D%0D%0A%0D%0A&locale=en |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:29 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | X-Message: |
| - | - '"Page%20was%20successfully%20updated."' |
| - | X-Message-Type: |
| - | - notice |
| - | Location: |
| - | - http://sample.example.com:3000/locomotive/api/pages |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"6ffba3690379b6da746fd27d92f7248a"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=duU5dLDj_8QFxXTFIEQ14_NmjtM; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - 4bf8bbc4161c73ff8cbb68fa7e839151 |
| - | X-Runtime: |
| - | - '0.047836' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"id":"5238710587f6431df7000007","_id":"5238710587f6431df7000007","created_at":"2013-09-17T15:11:01Z","updated_at":"2013-09-17T15:11:34Z","title":"Home |
| - | page","slug":"index","position":0,"response_type":"text/html","cache_strategy":"none","redirect":false,"redirect_type":301,"listed":true,"published":true,"templatized":false,"templatized_from_parent":false,"fullpath":"index","localized_fullpaths":{"en":"","es":"es"},"depth":0,"translated_in":["en","es"],"raw_template":"{% |
| - | block content %}\r\n New content of the home page\r\n{% endblock %}\r\n\r\n","escaped_raw_template":"{% |
| - | block content %}\r\n New content of the home page\r\n{% endblock %}\r\n\r\n","editable_elements":[]}' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:29 GMT |
| - | - request: |
| - | method: put |
| - | uri: http://sample.example.com:3000/locomotive/api/pages/5238710587f6431df7000008.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: UTF-8 |
| - | string: page[title]=Page%20not%20found&page[redirect_type]=301&page[listed]=true&page[templatized]=false&page[published]=true&page[cache_strategy]=none&page[response_type]=text%2Fhtml&page[position]=1&page[raw_template]=Content%20of%20the%20404%20page&locale=en |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:29 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | X-Message: |
| - | - '"Page%20was%20successfully%20updated."' |
| - | X-Message-Type: |
| - | - notice |
| - | Location: |
| - | - http://sample.example.com:3000/locomotive/api/pages |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"51be0ea69464ebbebabffdc75ca040e6"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=4McSFfrelnpxYjmqfxDPY9qgTww; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - 8e53fa6a4871e216fcbb4638cf018d16 |
| - | X-Runtime: |
| - | - '0.047939' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"id":"5238710587f6431df7000008","_id":"5238710587f6431df7000008","created_at":"2013-09-17T15:11:01Z","updated_at":"2013-09-17T15:11:34Z","title":"Page |
| - | not found","slug":"404","position":1,"response_type":"text/html","cache_strategy":"none","redirect":false,"redirect_type":301,"listed":true,"published":true,"templatized":false,"templatized_from_parent":false,"fullpath":"404","localized_fullpaths":{"en":"404","es":"es/404"},"depth":0,"translated_in":["en","es"],"raw_template":"Content |
| - | of the 404 page","escaped_raw_template":"Content of the 404 page","editable_elements":[]}' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:29 GMT |
| - | - request: |
| - | method: put |
| - | uri: http://sample.example.com:3000/locomotive/api/pages/5238712687f643884e000006.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: UTF-8 |
| - | string: page[title]=translated&page[slug]=translated&page[redirect_type]=301&page[listed]=true&page[templatized]=false&page[published]=true&page[cache_strategy]=none&page[response_type]=text%2Fhtml&page[position]=0&page[parent_id]=5238710587f6431df7000007&page[raw_template]=%7B%7B%20'hello_world'%20%7C%20translate%7D%7D&locale=en |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:29 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | X-Message: |
| - | - '"Page%20was%20successfully%20updated."' |
| - | X-Message-Type: |
| - | - notice |
| - | Location: |
| - | - http://sample.example.com:3000/locomotive/api/pages |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"a202b02adc5632297cf5e8f3bf2409ae"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=kit5yHtwhnibsHnc_gTKkA2t6yc; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - 0c1477d58c67745cf298b0cc8d620a78 |
| - | X-Runtime: |
| - | - '0.044674' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"id":"5238712687f643884e000006","_id":"5238712687f643884e000006","created_at":"2013-09-17T15:11:34Z","updated_at":"2013-09-17T15:11:34Z","title":"translated","slug":"translated","parent_id":"5238710587f6431df7000007","position":0,"response_type":"text/html","cache_strategy":"none","redirect":false,"redirect_type":301,"listed":true,"published":true,"templatized":false,"templatized_from_parent":false,"fullpath":"translated","localized_fullpaths":{"en":"translated","es":"es/translated"},"depth":1,"translated_in":["en"],"raw_template":"{{ |
| - | ''hello_world'' | translate}}","escaped_raw_template":"{{ 'hello_world' |
| - | | translate}}","editable_elements":[]}' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:29 GMT |
| - | - request: |
| - | method: put |
| - | uri: http://sample.example.com:3000/locomotive/api/pages/5238712687f643884e000007.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: UTF-8 |
| - | string: page[title]=Products&page[slug]=products&page[redirect_type]=301&page[listed]=true&page[templatized]=false&page[published]=true&page[cache_strategy]=none&page[response_type]=text%2Fhtml&page[position]=1&page[seo_title]=Search%20friendly%20products&page[meta_keywords]=fancy%2C%20products%2C%20keywords&page[meta_description]=Fancy%20products%20description&page[parent_id]=5238710587f6431df7000007&page[raw_template]=%7B%25%20extends%20parent%20%25%7D&locale=en |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:29 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | X-Message: |
| - | - '"Page%20was%20successfully%20updated."' |
| - | X-Message-Type: |
| - | - notice |
| - | Location: |
| - | - http://sample.example.com:3000/locomotive/api/pages |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"8f39ff72128b0d2f1362df309b2a067c"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=ky2khm8wBrdzKCUesWW3xuerRn4; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - 33d483adaf6bb546ba2c74c65948e216 |
| - | X-Runtime: |
| - | - '0.050862' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"id":"5238712687f643884e000007","_id":"5238712687f643884e000007","created_at":"2013-09-17T15:11:34Z","updated_at":"2013-09-17T15:11:34Z","title":"Products","slug":"products","parent_id":"5238710587f6431df7000007","position":1,"response_type":"text/html","cache_strategy":"none","redirect":false,"redirect_type":301,"listed":true,"published":true,"templatized":false,"templatized_from_parent":false,"fullpath":"products","localized_fullpaths":{"en":"products","es":"es/products"},"depth":1,"translated_in":["en","es"],"raw_template":"{% |
| - | extends parent %}","escaped_raw_template":"{% extends parent %}","editable_elements":[],"seo_title":"Search |
| - | friendly products","meta_keywords":"fancy, products, keywords","meta_description":"Fancy |
| - | products description"}' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:29 GMT |
| - | - request: |
| - | method: put |
| - | uri: http://sample.example.com:3000/locomotive/api/pages/5238712687f643884e000008.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: UTF-8 |
| - | string: page[title]=Latest&page[slug]=latest&page[redirect_type]=301&page[listed]=true&page[templatized]=false&page[published]=true&page[cache_strategy]=none&page[response_type]=text%2Fhtml&page[position]=0&page[parent_id]=5238712687f643884e000007&page[raw_template]=%7B%25%20extends%20parent%20%25%7D%0D%0A%7B%25%20block%20content%20%25%7D%0D%0A%20%20The%20name%20of%20the%20latest%20product%20is%3A%20%7B%7B%20contents.products.last.name%20%7D%7D%0D%0A%7B%25%20endblock%20%25%7D&locale=en |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:29 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | X-Message: |
| - | - '"Page%20was%20successfully%20updated."' |
| - | X-Message-Type: |
| - | - notice |
| - | Location: |
| - | - http://sample.example.com:3000/locomotive/api/pages |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"915df796067c2230e0a66e120eb4b6d3"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=j1Bx5Qt4s30UKEBKQGxxowJJXjU; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - 1573bafc95c15798ae2c1a5ea62da865 |
| - | X-Runtime: |
| - | - '0.043120' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"id":"5238712687f643884e000008","_id":"5238712687f643884e000008","created_at":"2013-09-17T15:11:34Z","updated_at":"2013-09-17T15:11:34Z","title":"Latest","slug":"latest","parent_id":"5238712687f643884e000007","position":0,"response_type":"text/html","cache_strategy":"none","redirect":false,"redirect_type":301,"listed":true,"published":true,"templatized":false,"templatized_from_parent":false,"fullpath":"products/latest","localized_fullpaths":{"en":"products/latest","es":"es/products/latest"},"depth":2,"translated_in":["en"],"raw_template":"{% |
| - | extends parent %}\r\n{% block content %}\r\n The name of the latest product |
| - | is: {{ contents.products.last.name }}\r\n{% endblock %}","escaped_raw_template":"{% |
| - | extends parent %}\r\n{% block content %}\r\n The name of the latest product |
| - | is: {{ contents.products.last.name }}\r\n{% endblock %}","editable_elements":[]}' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:29 GMT |
| - | - request: |
| - | method: put |
| - | uri: http://sample.example.com:3000/locomotive/api/pages/5238710587f6431df7000007.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: UTF-8 |
| - | string: page[title]=P%C3%A1gina%20de%20inicio&page[redirect_type]=301&page[listed]=true&page[templatized]=false&page[published]=true&page[cache_strategy]=none&page[response_type]=text%2Fhtml&page[position]=0&page[raw_template]=New%20content%20of%20the%20home%20page%0D%0A&locale=es |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:29 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Location: |
| - | - http://sample.example.com:3000/locomotive/api/pages |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"6499def2ece0125f6b4cebb93d09abc9"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=j2m44mhqVbbeQagbxBf28-iDnUQ; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - d51d42bbfe8dedee95f1d7b180e13bb0 |
| - | X-Runtime: |
| - | - '0.057261' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"id":"5238710587f6431df7000007","_id":"5238710587f6431df7000007","created_at":"2013-09-17T15:11:01Z","updated_at":"2013-09-17T15:11:34Z","title":"P\u00e1gina |
| - | de inicio","slug":"index","position":0,"response_type":"text/html","cache_strategy":"none","redirect":false,"redirect_type":301,"listed":true,"published":true,"templatized":false,"templatized_from_parent":false,"fullpath":"index","localized_fullpaths":{"en":"","es":"es"},"depth":0,"translated_in":["en","es"],"raw_template":"New |
| - | content of the home page\r\n","escaped_raw_template":"New content of the home |
| - | page\r\n","editable_elements":[]}' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:29 GMT |
| - | - request: |
| - | method: put |
| - | uri: http://sample.example.com:3000/locomotive/api/pages/5238710587f6431df7000008.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: UTF-8 |
| - | string: page[title]=P%C3%A1gina%20no%20encontrada&page[redirect_type]=301&page[listed]=true&page[templatized]=false&page[published]=true&page[cache_strategy]=none&page[response_type]=text%2Fhtml&page[position]=1&page[raw_template]=Content%20of%20the%20404%20page&locale=es |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:29 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Location: |
| - | - http://sample.example.com:3000/locomotive/api/pages |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"d04724071150d907283a4aea3a16f368"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=140LzM_9gbzuZH4b73fpn3Hf9ls; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - 8efc1ee1426a05eb1c2af10d07ae87a9 |
| - | X-Runtime: |
| - | - '0.041373' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"id":"5238710587f6431df7000008","_id":"5238710587f6431df7000008","created_at":"2013-09-17T15:11:01Z","updated_at":"2013-09-17T15:11:34Z","title":"P\u00e1gina |
| - | no encontrada","slug":"404","position":1,"response_type":"text/html","cache_strategy":"none","redirect":false,"redirect_type":301,"listed":true,"published":true,"templatized":false,"templatized_from_parent":false,"fullpath":"404","localized_fullpaths":{"en":"404","es":"es/404"},"depth":0,"translated_in":["en","es"],"raw_template":"Content |
| - | of the 404 page","escaped_raw_template":"Content of the 404 page","editable_elements":[]}' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:29 GMT |
| - | - request: |
| - | method: put |
| - | uri: http://sample.example.com:3000/locomotive/api/pages/5238712687f643884e000007.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: UTF-8 |
| - | string: page[title]=Products&page[slug]=products&page[redirect_type]=301&page[listed]=true&page[templatized]=false&page[published]=true&page[cache_strategy]=none&page[response_type]=text%2Fhtml&page[position]=1&page[seo_title]=Productos%20SEO&page[meta_keywords]=palabras%2C%20clave%2C%20productos&page[meta_description]=Descripci%C3%B3n%20molona%20de%20los%20productos&page[parent_id]=5238710587f6431df7000007&page[raw_template]=%7B%25%20extends%20parent%20%25%7D&locale=es |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:29 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Location: |
| - | - http://sample.example.com:3000/locomotive/api/pages |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"df564c6fd92a1e7b3d311fc1183d251b"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=pygcjUdiyEBnb2E3Q6qnERw3UiM; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - 63e0126bcadfc18ff2b92cbb98a73b48 |
| - | X-Runtime: |
| - | - '0.052407' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"id":"5238712687f643884e000007","_id":"5238712687f643884e000007","created_at":"2013-09-17T15:11:34Z","updated_at":"2013-09-17T15:11:34Z","title":"Products","slug":"products","parent_id":"5238710587f6431df7000007","position":1,"response_type":"text/html","cache_strategy":"none","redirect":false,"redirect_type":301,"listed":true,"published":true,"templatized":false,"templatized_from_parent":false,"fullpath":"products","localized_fullpaths":{"en":"products","es":"es/products"},"depth":1,"translated_in":["en","es"],"raw_template":"{% |
| - | extends parent %}","escaped_raw_template":"{% extends parent %}","editable_elements":[],"seo_title":"Productos |
| - | SEO","meta_keywords":"palabras, clave, productos","meta_description":"Descripci\u00f3n |
| - | molona de los productos"}' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:29 GMT |
| - | - request: |
| - | method: get |
| - | uri: http://sample.example.com:3000/locomotive/api/theme_assets.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: US-ASCII |
| - | string: '' |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:30 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"d751713988987e9331980363e24189ce"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=AmdddP0LQNJk5CbNcw7PDZ27vVw; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - f1be1b0c567c52f2f3aa657721d33418 |
| - | X-Runtime: |
| - | - '0.037162' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '[]' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:30 GMT |
| - | recorded_with: VCR 2.5.0 |
spec/integration/cassettes/staging.yml
+0
-706
| @@ | @@ -1,706 +0,0 @@ |
| - | --- |
| - | http_interactions: |
| - | - request: |
| - | method: post |
| - | uri: http://staging.example.com:3000/locomotive/api/tokens.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: UTF-8 |
| - | string: email=admin%40locomotivecms.com&password=locomotive |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:17 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Location: |
| - | - http://staging.example.com:3000/locomotive/ |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"d1a90b45e031fb4f87663184c2a67dbd"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=Z-0l0Y8-g8TGAAe1oM1Peib5vLI; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - 9bfd90daafdb585129b8767665ae3baf |
| - | X-Runtime: |
| - | - '0.045476' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"token":"iaWvtP5PhmnyKypXpLbM"}' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:17 GMT |
| - | - request: |
| - | method: get |
| - | uri: http://staging.example.com:3000/locomotive/api/current_site.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: US-ASCII |
| - | string: '' |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 404 |
| - | message: Not Found |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:17 GMT |
| - | Status: |
| - | - 404 Not Found |
| - | Connection: |
| - | - close |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Cache-Control: |
| - | - no-cache |
| - | Set-Cookie: |
| - | - _locomotive_session=Rp9eJOJH2fQswGRhc4CBMHxfbu0; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - dd091f0b3577e5d46a711bae143998b7 |
| - | X-Runtime: |
| - | - '0.043115' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"error":"No site found"}' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:17 GMT |
| - | - request: |
| - | method: post |
| - | uri: http://staging.example.com:3000/locomotive/api/sites.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: UTF-8 |
| - | string: site[name]=locomotive&site[locales][]=en&site[locales][]=es&site[subdomain]=staging&site[domains][]=staging.example.com&site[timezone]=UTC&locale=en |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:17 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Location: |
| - | - http://staging.example.com:3000/locomotive/sites/5238715187f643884e000009 |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"6e842a0747f262a4d0a4822653b5ed6b"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=Gx_CGBcDBH6JtUqjNMwW7yzAJvI; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - c27e7b1289cb931ee423f2f41be31c41 |
| - | X-Runtime: |
| - | - '0.112822' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"id":"5238715187f643884e000009","_id":"5238715187f643884e000009","created_at":"2013-09-17T15:12:17Z","updated_at":"2013-09-17T15:12:17Z","name":"locomotive","locales":["en","es"],"timezone":"UTC","subdomain":"staging","domains":["staging.example.com"],"domains_without_subdomain":[],"domain_name":"example.com","memberships":[{"id":"5238715187f643884e00000a","_id":"5238715187f643884e00000a","role":"admin","role_name":"Administrator","can_update":false,"grant_admin":true,"account_id":"5238710587f6431df7000001","name":"Admin","email":"admin@locomotivecms.com"}]}' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:17 GMT |
| - | - request: |
| - | method: put |
| - | uri: http://staging.example.com:3000/locomotive/api/sites/5238715187f643884e000009.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: UTF-8 |
| - | string: site[name]=locomotive&site[locales][]=en&site[locales][]=es&site[subdomain]=staging&site[domains][]=staging.example.com&site[timezone]=UTC&locale=es |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:17 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Location: |
| - | - http://staging.example.com:3000/locomotive/sites/5238715187f643884e000009 |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"3eb7da00847216261731645a56548946"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=yg3-tVy93jxvaLadUomxmcAe92w; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - c30fd870f8a85f1044735304e5cb7f20 |
| - | X-Runtime: |
| - | - '0.059894' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"id":"5238715187f643884e000009","_id":"5238715187f643884e000009","created_at":"2013-09-17T15:12:17Z","updated_at":"2013-09-17T15:12:17Z","name":"locomotive","locales":["en","es"],"timezone":"UTC","subdomain":"staging","domains":["staging.example.com"],"domains_without_subdomain":[],"domain_name":"example.com","memberships":[{"id":"5238715187f643884e00000a","_id":"5238715187f643884e00000a","role":"admin","role_name":"Administrador","can_update":false,"grant_admin":true,"account_id":"5238710587f6431df7000001","name":"Admin","email":"admin@locomotivecms.com"}]}' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:17 GMT |
| - | - request: |
| - | method: get |
| - | uri: http://staging.example.com:3000/locomotive/api/snippets.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: US-ASCII |
| - | string: '' |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:17 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"d751713988987e9331980363e24189ce"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=wAQkE4eOIgzOei0g94jrWerXqa0; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - 754f7e964a75adc660be5322941548a6 |
| - | X-Runtime: |
| - | - '0.049819' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '[]' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:17 GMT |
| - | - request: |
| - | method: get |
| - | uri: http://staging.example.com:3000/locomotive/api/content_types.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: US-ASCII |
| - | string: '' |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:17 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"d751713988987e9331980363e24189ce"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=G6KyKliXRWljgrWcsfJNwUqS53I; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - ee4a1a0bfa53662f5df0cd1df98f7406 |
| - | X-Runtime: |
| - | - '0.147143' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '[]' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:17 GMT |
| - | - request: |
| - | method: post |
| - | uri: http://staging.example.com:3000/locomotive/api/content_types.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: UTF-8 |
| - | string: content_type[name]=Products&content_type[description]=My%20products%20collection&content_type[slug]=products&content_type[label_field_name]=name&content_type[order_by]=created_at&content_type[order_direction]=asc&content_type[entries_custom_fields][][label]=name&content_type[entries_custom_fields][][name]=name&content_type[entries_custom_fields][][type]=string&content_type[entries_custom_fields][][position]=0&content_type[entries_custom_fields][][required]=true&content_type[entries_custom_fields][][unique]=false&content_type[entries_custom_fields][][localized]=true&content_type[entries_custom_fields][][label]=available&content_type[entries_custom_fields][][name]=available&content_type[entries_custom_fields][][type]=boolean&content_type[entries_custom_fields][][position]=1&content_type[entries_custom_fields][][required]=false&content_type[entries_custom_fields][][unique]=false&content_type[entries_custom_fields][][localized]=false |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:17 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Location: |
| - | - http://staging.example.com:3000/locomotive/api/content_types |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"9a10d6bde4c6dff5872887e673ba38b3"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=5IDxw38JgWhqxItM_MrQCWQR2UY; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - d392666c93ef648db15a29ce57bf2cec |
| - | X-Runtime: |
| - | - '0.078165' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"id":"5238715187f643884e00000d","_id":"5238715187f643884e00000d","created_at":"2013-09-17T15:12:17Z","updated_at":"2013-09-17T15:12:17Z","name":"Products","slug":"products","entries_custom_fields":[{"id":"5238715187f643884e00000e","_id":"5238715187f643884e00000e","name":"name","label":"name","type":"string","required":true,"localized":true,"unique":false,"position":0},{"id":"5238715187f643884e00000f","_id":"5238715187f643884e00000f","name":"available","label":"available","type":"boolean","required":false,"localized":false,"unique":false,"position":1}],"description":"My |
| - | products collection","label_field_name":"name","order_by":"created_at","order_direction":"asc","order_by_field_name":"created_at","public_submission_enabled":false,"public_submission_account_emails":[]}' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:17 GMT |
| - | - request: |
| - | method: get |
| - | uri: http://staging.example.com:3000/locomotive/api/pages.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: US-ASCII |
| - | string: '' |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:17 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"2bf034a4556fe3479a16e76573df955d"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=71tt9yea19R8HhQ0mshLgX28FkI; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - a0018dd556aa887384361d1cc04c0cb9 |
| - | X-Runtime: |
| - | - '0.048914' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '[{"id":"5238715187f643884e00000b","_id":"5238715187f643884e00000b","created_at":"2013-09-17T15:12:17Z","updated_at":"2013-09-17T15:12:17Z","title":"Home |
| - | page","slug":"index","position":0,"response_type":"text/html","cache_strategy":"none","redirect":false,"redirect_type":301,"listed":true,"published":true,"templatized":false,"templatized_from_parent":false,"fullpath":"index","localized_fullpaths":{"en":"","es":"es"},"depth":0,"translated_in":["en","es"],"raw_template":"Content |
| - | of the home page","escaped_raw_template":"Content of the home page","editable_elements":[]},{"id":"5238715187f643884e00000c","_id":"5238715187f643884e00000c","created_at":"2013-09-17T15:12:17Z","updated_at":"2013-09-17T15:12:17Z","title":"Page |
| - | not found","slug":"404","position":1,"response_type":"text/html","cache_strategy":"none","redirect":false,"redirect_type":301,"listed":true,"published":true,"templatized":false,"templatized_from_parent":false,"fullpath":"404","localized_fullpaths":{"en":"404","es":"es/404"},"depth":0,"translated_in":["en","es"],"raw_template":"Content |
| - | of the 404 page","escaped_raw_template":"Content of the 404 page","editable_elements":[]}]' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:17 GMT |
| - | - request: |
| - | method: put |
| - | uri: http://staging.example.com:3000/locomotive/api/pages/5238715187f643884e00000b.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: UTF-8 |
| - | string: page[title]=Home%20page&page[redirect_type]=301&page[listed]=true&page[templatized]=false&page[published]=true&page[cache_strategy]=none&page[response_type]=text%2Fhtml&page[position]=0&page[raw_template]=%7B%25%20block%20content%20%25%7D%0D%0A%20%20New%20content%20of%20the%20home%20page%0D%0A%7B%25%20endblock%20%25%7D%0D%0A%0D%0A&locale=en |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:18 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | X-Message: |
| - | - '"Page%20was%20successfully%20updated."' |
| - | X-Message-Type: |
| - | - notice |
| - | Location: |
| - | - http://staging.example.com:3000/locomotive/api/pages |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"7526fea703475e13c5673d3b3dc74174"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=YZ0YkOmt0avCCj2MAzcSd2chOfg; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - 3206f59d583d6efc01637f9dcbc9cc43 |
| - | X-Runtime: |
| - | - '0.072984' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"id":"5238715187f643884e00000b","_id":"5238715187f643884e00000b","created_at":"2013-09-17T15:12:17Z","updated_at":"2013-09-17T15:12:18Z","title":"Home |
| - | page","slug":"index","position":0,"response_type":"text/html","cache_strategy":"none","redirect":false,"redirect_type":301,"listed":true,"published":true,"templatized":false,"templatized_from_parent":false,"fullpath":"index","localized_fullpaths":{"en":"","es":"es"},"depth":0,"template_changed":true,"translated_in":["en","es"],"raw_template":"{% |
| - | block content %}\r\n New content of the home page\r\n{% endblock %}\r\n\r\n","escaped_raw_template":"{% |
| - | block content %}\r\n New content of the home page\r\n{% endblock %}\r\n\r\n","editable_elements":[]}' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:18 GMT |
| - | - request: |
| - | method: put |
| - | uri: http://staging.example.com:3000/locomotive/api/pages/5238715187f643884e00000c.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: UTF-8 |
| - | string: page[title]=Page%20not%20found&page[redirect_type]=301&page[listed]=true&page[templatized]=false&page[published]=true&page[cache_strategy]=none&page[response_type]=text%2Fhtml&page[position]=1&page[raw_template]=Content%20of%20the%20404%20page&locale=en |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:18 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | X-Message: |
| - | - '"Page%20was%20successfully%20updated."' |
| - | X-Message-Type: |
| - | - notice |
| - | Location: |
| - | - http://staging.example.com:3000/locomotive/api/pages |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"eb0485fd501236dec0f261e70555721f"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=oUJqosgKMmzIMweOoAkLOEyRZGg; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - 23024c6f75ac4b4db106e1b277f7e90b |
| - | X-Runtime: |
| - | - '0.053845' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"id":"5238715187f643884e00000c","_id":"5238715187f643884e00000c","created_at":"2013-09-17T15:12:17Z","updated_at":"2013-09-17T15:12:17Z","title":"Page |
| - | not found","slug":"404","position":1,"response_type":"text/html","cache_strategy":"none","redirect":false,"redirect_type":301,"listed":true,"published":true,"templatized":false,"templatized_from_parent":false,"fullpath":"404","localized_fullpaths":{"en":"404","es":"es/404"},"depth":0,"translated_in":["en","es"],"raw_template":"Content |
| - | of the 404 page","escaped_raw_template":"Content of the 404 page","editable_elements":[]}' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:18 GMT |
| - | - request: |
| - | method: post |
| - | uri: http://staging.example.com:3000/locomotive/api/pages.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: UTF-8 |
| - | string: page[title]=translated&page[slug]=translated&page[redirect_type]=301&page[listed]=true&page[templatized]=false&page[published]=true&page[cache_strategy]=none&page[response_type]=text%2Fhtml&page[position]=0&page[parent_id]=5238715187f643884e00000b&page[raw_template]=%7B%7B%20'hello_world'%20%7C%20translate%7D%7D |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:18 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Location: |
| - | - http://staging.example.com:3000/locomotive/api/pages |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"d613d3737207cda34c54e60662bc4eb8"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=TO2vsghCeuN0qN5J9TeGn-hZPhY; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - 21538f3846598a0746027c05379040a6 |
| - | X-Runtime: |
| - | - '0.068711' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"id":"5238715287f643884e000010","_id":"5238715287f643884e000010","created_at":"2013-09-17T15:12:18Z","updated_at":"2013-09-17T15:12:18Z","title":"translated","slug":"translated","parent_id":"5238715187f643884e00000b","position":0,"response_type":"text/html","cache_strategy":"none","redirect":false,"redirect_type":301,"listed":true,"published":true,"templatized":false,"templatized_from_parent":false,"fullpath":"translated","localized_fullpaths":{"en":"translated","es":"es/translated"},"depth":1,"template_changed":true,"translated_in":["en"],"raw_template":"{{ |
| - | ''hello_world'' | translate}}","escaped_raw_template":"{{ 'hello_world' |
| - | | translate}}","editable_elements":[]}' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:18 GMT |
| - | - request: |
| - | method: post |
| - | uri: http://staging.example.com:3000/locomotive/api/pages.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: UTF-8 |
| - | string: page[title]=Products&page[slug]=products&page[redirect_type]=301&page[listed]=true&page[templatized]=false&page[published]=true&page[cache_strategy]=none&page[response_type]=text%2Fhtml&page[position]=1&page[seo_title]=Search%20friendly%20products&page[meta_keywords]=fancy%2C%20products%2C%20keywords&page[meta_description]=Fancy%20products%20description&page[parent_id]=5238715187f643884e00000b&page[raw_template]=%7B%25%20extends%20parent%20%25%7D |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:18 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Location: |
| - | - http://staging.example.com:3000/locomotive/api/pages |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"507502849fe4cc6de4a4c3b2869c3fa0"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=77kG6mysN41mNG60lcZWlKhzpD0; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - 58d6d16ff658cea0ab4d90293d5fa2d5 |
| - | X-Runtime: |
| - | - '0.069076' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"id":"5238715287f643884e000011","_id":"5238715287f643884e000011","created_at":"2013-09-17T15:12:18Z","updated_at":"2013-09-17T15:12:18Z","title":"Products","slug":"products","parent_id":"5238715187f643884e00000b","position":1,"response_type":"text/html","cache_strategy":"none","redirect":false,"redirect_type":301,"listed":true,"published":true,"templatized":false,"templatized_from_parent":false,"fullpath":"products","localized_fullpaths":{"en":"products","es":"es/products"},"depth":1,"template_changed":true,"translated_in":["en"],"raw_template":"{% |
| - | extends parent %}","escaped_raw_template":"{% extends parent %}","editable_elements":[],"seo_title":"Search |
| - | friendly products","meta_keywords":"fancy, products, keywords","meta_description":"Fancy |
| - | products description"}' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:18 GMT |
| - | - request: |
| - | method: post |
| - | uri: http://staging.example.com:3000/locomotive/api/pages.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: UTF-8 |
| - | string: page[title]=Latest&page[slug]=latest&page[redirect_type]=301&page[listed]=true&page[templatized]=false&page[published]=true&page[cache_strategy]=none&page[response_type]=text%2Fhtml&page[position]=0&page[parent_id]=5238715287f643884e000011&page[raw_template]=%7B%25%20extends%20parent%20%25%7D%0D%0A%7B%25%20block%20content%20%25%7D%0D%0A%20%20The%20name%20of%20the%20latest%20product%20is%3A%20%7B%7B%20contents.products.last.name%20%7D%7D%0D%0A%7B%25%20endblock%20%25%7D |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:18 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Location: |
| - | - http://staging.example.com:3000/locomotive/api/pages |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"8c34a4badd6911f6574462b6b1c305ae"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=hnwRvwirurzAcWZbZrsRGCXjqHw; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - 257eb9dbe9a49b96344cdd66e0727a73 |
| - | X-Runtime: |
| - | - '0.069259' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"id":"5238715287f643884e000012","_id":"5238715287f643884e000012","created_at":"2013-09-17T15:12:18Z","updated_at":"2013-09-17T15:12:18Z","title":"Latest","slug":"latest","parent_id":"5238715287f643884e000011","position":0,"response_type":"text/html","cache_strategy":"none","redirect":false,"redirect_type":301,"listed":true,"published":true,"templatized":false,"templatized_from_parent":false,"fullpath":"products/latest","localized_fullpaths":{"en":"products/latest","es":"es/products/latest"},"depth":2,"template_changed":true,"translated_in":["en"],"raw_template":"{% |
| - | extends parent %}\r\n{% block content %}\r\n The name of the latest product |
| - | is: {{ contents.products.last.name }}\r\n{% endblock %}","escaped_raw_template":"{% |
| - | extends parent %}\r\n{% block content %}\r\n The name of the latest product |
| - | is: {{ contents.products.last.name }}\r\n{% endblock %}","editable_elements":[]}' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:18 GMT |
| - | - request: |
| - | method: put |
| - | uri: http://staging.example.com:3000/locomotive/api/pages/5238715187f643884e00000b.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: UTF-8 |
| - | string: page[title]=P%C3%A1gina%20de%20inicio&page[redirect_type]=301&page[listed]=true&page[templatized]=false&page[published]=true&page[cache_strategy]=none&page[response_type]=text%2Fhtml&page[position]=0&page[raw_template]=New%20content%20of%20the%20home%20page%0D%0A&locale=es |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:18 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Location: |
| - | - http://staging.example.com:3000/locomotive/api/pages |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"6fadabcb1299382b31a7a76b19c3bdec"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=xMkk4AIEl8Y92IYN6WraIpDQ1-4; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - 408a7e2b3c9ffca5242184458aafd900 |
| - | X-Runtime: |
| - | - '0.112108' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"id":"5238715187f643884e00000b","_id":"5238715187f643884e00000b","created_at":"2013-09-17T15:12:17Z","updated_at":"2013-09-17T15:12:18Z","title":"P\u00e1gina |
| - | de inicio","slug":"index","position":0,"response_type":"text/html","cache_strategy":"none","redirect":false,"redirect_type":301,"listed":true,"published":true,"templatized":false,"templatized_from_parent":false,"fullpath":"index","localized_fullpaths":{"en":"","es":"es"},"depth":0,"template_changed":true,"translated_in":["en","es"],"raw_template":"New |
| - | content of the home page\r\n","escaped_raw_template":"New content of the home |
| - | page\r\n","editable_elements":[]}' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:18 GMT |
| - | - request: |
| - | method: put |
| - | uri: http://staging.example.com:3000/locomotive/api/pages/5238715187f643884e00000c.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: UTF-8 |
| - | string: page[title]=P%C3%A1gina%20no%20encontrada&page[redirect_type]=301&page[listed]=true&page[templatized]=false&page[published]=true&page[cache_strategy]=none&page[response_type]=text%2Fhtml&page[position]=1&page[raw_template]=Content%20of%20the%20404%20page&locale=es |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:18 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Location: |
| - | - http://staging.example.com:3000/locomotive/api/pages |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"951c07cfeb3a3b0b3a5962b7bf5684b8"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=LLgP_cxmWw_vR6lgaKBcJMCUFQM; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - d826f8392060b1dbd39e13d918f83547 |
| - | X-Runtime: |
| - | - '0.048381' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"id":"5238715187f643884e00000c","_id":"5238715187f643884e00000c","created_at":"2013-09-17T15:12:17Z","updated_at":"2013-09-17T15:12:18Z","title":"P\u00e1gina |
| - | no encontrada","slug":"404","position":1,"response_type":"text/html","cache_strategy":"none","redirect":false,"redirect_type":301,"listed":true,"published":true,"templatized":false,"templatized_from_parent":false,"fullpath":"404","localized_fullpaths":{"en":"404","es":"es/404"},"depth":0,"template_changed":true,"translated_in":["en","es"],"raw_template":"Content |
| - | of the 404 page","escaped_raw_template":"Content of the 404 page","editable_elements":[]}' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:18 GMT |
| - | - request: |
| - | method: put |
| - | uri: http://staging.example.com:3000/locomotive/api/pages/5238715287f643884e000011.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: UTF-8 |
| - | string: page[title]=Products&page[slug]=products&page[listed]=true&page[templatized]=false&page[published]=true&page[cache_strategy]=none&page[response_type]=text%2Fhtml&page[position]=1&page[seo_title]=Productos%20SEO&page[meta_keywords]=palabras%2C%20clave%2C%20productos&page[meta_description]=Descripci%C3%B3n%20molona%20de%20los%20productos&page[raw_template]=%7B%25%20extends%20parent%20%25%7D&locale=es |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:18 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Location: |
| - | - http://staging.example.com:3000/locomotive/api/pages |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"adbbc177679aebab4f5442b46c975ab7"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=iVFImXwU4LRxxvm21taLtcQDkzE; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - 08b1dd7febf52138996b81a0e8d162ed |
| - | X-Runtime: |
| - | - '0.068407' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '{"id":"5238715287f643884e000011","_id":"5238715287f643884e000011","created_at":"2013-09-17T15:12:18Z","updated_at":"2013-09-17T15:12:18Z","title":"Products","slug":"products","parent_id":"5238715187f643884e00000b","position":1,"response_type":"text/html","cache_strategy":"none","redirect":false,"redirect_type":301,"listed":true,"published":true,"templatized":false,"templatized_from_parent":false,"fullpath":"products","localized_fullpaths":{"en":"products","es":"es/products"},"depth":1,"template_changed":true,"translated_in":["en","es"],"raw_template":"{% |
| - | extends parent %}","escaped_raw_template":"{% extends parent %}","editable_elements":[],"seo_title":"Productos |
| - | SEO","meta_keywords":"palabras, clave, productos","meta_description":"Descripci\u00f3n |
| - | molona de los productos"}' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:18 GMT |
| - | - request: |
| - | method: get |
| - | uri: http://staging.example.com:3000/locomotive/api/theme_assets.json?auth_token=iaWvtP5PhmnyKypXpLbM |
| - | body: |
| - | encoding: US-ASCII |
| - | string: '' |
| - | headers: {} |
| - | response: |
| - | status: |
| - | code: 200 |
| - | message: OK |
| - | headers: |
| - | Date: |
| - | - Tue, 17 Sep 2013 15:12:18 GMT |
| - | Status: |
| - | - 200 OK |
| - | Connection: |
| - | - close |
| - | Content-Type: |
| - | - application/json; charset=utf-8 |
| - | X-Ua-Compatible: |
| - | - IE=Edge |
| - | Etag: |
| - | - '"d751713988987e9331980363e24189ce"' |
| - | Cache-Control: |
| - | - max-age=0, private, must-revalidate |
| - | Set-Cookie: |
| - | - _locomotive_session=-t4DtKkjHS5nXFQ1qzDVjuudB50; domain=.example.com; path=/; |
| - | HttpOnly |
| - | X-Request-Id: |
| - | - 7e14bbedcd12063d6114acef640780d6 |
| - | X-Runtime: |
| - | - '0.035893' |
| - | body: |
| - | encoding: UTF-8 |
| - | string: '[]' |
| - | http_version: |
| - | recorded_at: Tue, 17 Sep 2013 15:12:18 GMT |
| - | recorded_with: VCR 2.5.0 |
spec/spec_helper.rb
+4
-2
| @@ | @@ -1,8 +1,10 @@ |
| require 'locomotive/wagon' | |
| require 'rspec' | |
| - | require 'coveralls' |
| + | require 'simplecov' |
| - | Coveralls.wear! |
| + | SimpleCov.start do |
| + | add_filter 'spec/' |
| + | end |
| Dir["#{File.expand_path('../support', __FILE__)}/*.rb"].each do |file| | |
| require file | |
spec/unit/decorators/content_entry_decorator_spec.rb
+1
-1
| @@ | @@ -85,7 +85,7 @@ describe Locomotive::Wagon::ContentEntryDecorator do |
| subject { decorator.to_hash } | |
| - | it { is_expected.to eq({ _slug: 'sample', posted_at: '2015-11-11T17:00:00+00:00' }) } |
| + | it { is_expected.to eq({ _slug: 'sample', posted_at: '2015-11-11T17:00:00Z' }) } |
| context 'nil field' do | |
| let(:attributes) { { posted_at: nil } } | |