diff --git a/package-lock.json b/package-lock.json
index 8d0fb5a..40a2af9 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -8,6 +8,7 @@
"name": "hexo-site",
"version": "0.0.0",
"dependencies": {
+ "@sveltia/cms": "^0.100.1",
"axios": "^1.11.0",
"cheerio": "^1.1.2",
"hexo": "^7.3.0",
@@ -351,6 +352,12 @@
"@jridgewell/sourcemap-codec": "^1.4.14"
}
},
+ "node_modules/@sveltia/cms": {
+ "version": "0.100.1",
+ "resolved": "https://registry.npmmirror.com/@sveltia/cms/-/cms-0.100.1.tgz",
+ "integrity": "sha512-9XMAktc7wGyYvaALUGbDjZvWMwZCb1vidvDZSh/8R9Qw/8hDV/O1NujqcPXKgQaOelahIg6FidNqYvY0GFIH4A==",
+ "license": "MIT"
+ },
"node_modules/@types/trusted-types": {
"version": "2.0.7",
"resolved": "https://registry.npmmirror.com/@types/trusted-types/-/trusted-types-2.0.7.tgz",
diff --git a/package.json b/package.json
index ce7383f..b41d82c 100644
--- a/package.json
+++ b/package.json
@@ -12,6 +12,7 @@
"version": "7.3.0"
},
"dependencies": {
+ "@sveltia/cms": "^0.100.1",
"axios": "^1.11.0",
"cheerio": "^1.1.2",
"hexo": "^7.3.0",
diff --git a/source/admin/.editorconfig b/source/admin/.editorconfig
deleted file mode 100644
index 5fe0621..0000000
--- a/source/admin/.editorconfig
+++ /dev/null
@@ -1,19 +0,0 @@
-# https://editorconfig.org
-root = true
-
-[*]
-indent_style = space
-indent_size = 2
-charset = utf-8
-trim_trailing_whitespace = true
-insert_final_newline = true
-
-[*.js]
-quote_type = single
-spaces_around_operators = true
-
-[*.css]
-quote_type = single
-
-[*.md]
-trim_trailing_whitespace = false
diff --git a/source/admin/.eslintrc.js b/source/admin/.eslintrc.js
deleted file mode 100644
index 6753607..0000000
--- a/source/admin/.eslintrc.js
+++ /dev/null
@@ -1,105 +0,0 @@
-const fs = require('fs');
-
-const packages = fs
- .readdirSync(`${__dirname}/packages`, { withFileTypes: true })
- .filter(dirent => dirent.isDirectory())
- .map(dirent => dirent.name);
-
-module.exports = {
- parser: 'babel-eslint',
- extends: [
- 'eslint:recommended',
- 'plugin:react/recommended',
- 'plugin:cypress/recommended',
- 'prettier',
- 'plugin:import/recommended',
- ],
- env: {
- es6: true,
- browser: true,
- node: true,
- jest: true,
- 'cypress/globals': true,
- },
- globals: {
- DECAP_CMS_VERSION: false,
- DECAP_CMS_APP_VERSION: false,
- DECAP_CMS_CORE_VERSION: false,
- CMS_ENV: false,
- },
- rules: {
- 'no-console': [0],
- 'react/prop-types': [0],
- 'import/no-named-as-default': 0,
- 'import/order': [
- 'error',
- {
- 'newlines-between': 'always',
- groups: [['builtin', 'external'], ['internal', 'parent', 'sibling', 'index'], ['type']],
- },
- ],
- 'no-duplicate-imports': 'error',
- '@emotion/no-vanilla': 'error',
- '@emotion/pkg-renaming': 'error',
- '@emotion/import-from-emotion': 'error',
- '@emotion/styled-import': 'error',
- 'require-atomic-updates': [0],
- 'object-shorthand': ['error', 'always'],
- 'func-style': ['error', 'declaration'],
- 'prefer-const': [
- 'error',
- {
- destructuring: 'all',
- },
- ],
- 'unicorn/prefer-string-slice': 'error',
- 'react/no-unknown-property': ['error', { ignore: ['css', 'bold', 'italic', 'delete'] }],
- },
- plugins: ['babel', '@emotion', 'cypress', 'unicorn'],
- settings: {
- react: {
- version: 'detect',
- },
- 'import/resolver': {
- node: {
- extensions: ['.js', '.jsx', '.ts', '.tsx'],
- },
- },
- 'import/core-modules': [...packages, 'decap-cms-app/dist/esm'],
- },
- overrides: [
- {
- files: ['*.ts', '*.tsx'],
- parser: '@typescript-eslint/parser',
- extends: [
- 'eslint:recommended',
- 'plugin:react/recommended',
- 'plugin:cypress/recommended',
- 'plugin:@typescript-eslint/recommended',
- 'prettier',
- 'plugin:import/recommended',
- 'plugin:import/typescript',
- ],
- parserOptions: {
- ecmaVersion: 2018,
- sourceType: 'module',
- ecmaFeatures: {
- jsx: true,
- },
- },
- rules: {
- 'no-duplicate-imports': [0], // handled by @typescript-eslint
- '@typescript-eslint/ban-types': [0], // TODO enable in future
- '@typescript-eslint/no-non-null-assertion': [0],
- '@typescript-eslint/consistent-type-imports': 'error',
- '@typescript-eslint/explicit-function-return-type': [0],
- '@typescript-eslint/explicit-module-boundary-types': [0],
- '@typescript-eslint/no-duplicate-imports': 'error',
- '@typescript-eslint/no-use-before-define': [
- 'error',
- { functions: false, classes: true, variables: true },
- ],
- },
- },
- ],
-};
diff --git a/source/admin/.gitattributes b/source/admin/.gitattributes
deleted file mode 100644
index 6313b56..0000000
--- a/source/admin/.gitattributes
+++ /dev/null
@@ -1 +0,0 @@
-* text=auto eol=lf
diff --git a/source/admin/.github/.kodiak.toml b/source/admin/.github/.kodiak.toml
deleted file mode 100644
index 0209e10..0000000
--- a/source/admin/.github/.kodiak.toml
+++ /dev/null
@@ -1,8 +0,0 @@
-version = 1
-
-[merge.automerge_dependencies]
-versions = ["minor", "patch"]
-usernames = ["renovate"]
-
-[approve]
-auto_approve_usernames = ["renovate"]
\ No newline at end of file
diff --git a/source/admin/.github/CODEOWNERS b/source/admin/.github/CODEOWNERS
deleted file mode 100644
index 0092b5a..0000000
--- a/source/admin/.github/CODEOWNERS
+++ /dev/null
@@ -1 +0,0 @@
-* @decaporg/maintainers
diff --git a/source/admin/.github/FUNDING.yml b/source/admin/.github/FUNDING.yml
deleted file mode 100644
index 1759dc1..0000000
--- a/source/admin/.github/FUNDING.yml
+++ /dev/null
@@ -1,2 +0,0 @@
-github: decaporg
-open_collective: decap
diff --git a/source/admin/.github/ISSUE_TEMPLATE/bug_report.md b/source/admin/.github/ISSUE_TEMPLATE/bug_report.md
deleted file mode 100644
index b9520ce..0000000
--- a/source/admin/.github/ISSUE_TEMPLATE/bug_report.md
+++ /dev/null
@@ -1,48 +0,0 @@
----
-name: Bug report
-about: Report a problem you are experiencing
-title: 'Please replace with a clear and descriptive title'
-labels: 'type: bug'
----
-
-
-
-**Describe the bug**
-
-
-**To Reproduce**
-
-
-**Expected behavior**
-
-
-**Screenshots**
-
-
-**Applicable Versions:**
-
- - Decap CMS version: [e.g. 2.0.4]
- - Git provider: [e.g. GitHub, BitBucket]
- - OS: [e.g. Windows 7]
- - Browser version [e.g. chrome 22, safari 11]
-
- - Node.JS version:
-
-**CMS configuration**
-
-
-
-**Additional context**
-
diff --git a/source/admin/.github/ISSUE_TEMPLATE/feature_request.md b/source/admin/.github/ISSUE_TEMPLATE/feature_request.md
deleted file mode 100644
index c04deb4..0000000
--- a/source/admin/.github/ISSUE_TEMPLATE/feature_request.md
+++ /dev/null
@@ -1,26 +0,0 @@
----
-name: Feature request
-about: Suggest an idea for this project
-title: 'Please replace with a clear and descriptive title'
-labels: 'type: feature'
----
-
-
-
-**Is your feature request related to a problem? Please describe.**
-
-
-**Describe the solution you'd like**
-
-
-**Describe alternatives you've considered**
-
-
-**Additional context**
-
diff --git a/source/admin/.github/PULL_REQUEST_TEMPLATE.md b/source/admin/.github/PULL_REQUEST_TEMPLATE.md
deleted file mode 100644
index 2d8c3ef..0000000
--- a/source/admin/.github/PULL_REQUEST_TEMPLATE.md
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-**Summary**
-
-
-
-**Test plan**
-
-
-
-**Checklist**
-
-Please add a `x` inside each checkbox:
-
-- [ ] I have read the [contribution guidelines](https://github.com/decaporg/decap-cms/blob/main/CONTRIBUTING.md).
-
-**A picture of a cute animal (not mandatory but encouraged)**
diff --git a/source/admin/.github/stale.yml b/source/admin/.github/stale.yml
deleted file mode 100644
index 1f0fadf..0000000
--- a/source/admin/.github/stale.yml
+++ /dev/null
@@ -1,17 +0,0 @@
-# Number of days of inactivity before an issue becomes stale
-daysUntilStale: 60
-# Number of days of inactivity before a stale issue is closed
-daysUntilClose: 14
-# Issues with these labels will never be considered stale
-exemptLabels:
- - pinned
- - security
-# Label to use when marking an issue as stale
-staleLabel: 'status: stale'
-# Comment to post when marking an issue as stale. Set to `false` to disable
-markComment: >
- This issue has been automatically marked as stale because it has not had
- recent activity. It will be closed if no further activity occurs. Thank you
- for your contributions.
-# Comment to post when closing a stale issue. Set to `false` to disable
-closeComment: false
diff --git a/source/admin/.github/workflows/create-release.yml b/source/admin/.github/workflows/create-release.yml
deleted file mode 100644
index e49cf02..0000000
--- a/source/admin/.github/workflows/create-release.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-name: Create release
-
-on:
- create
-
-jobs:
- create-release:
- name: Create GitHub Release
- runs-on: ubuntu-latest
- if: startsWith(github.ref, 'refs/tags/decap-cms@')
-
- steps:
- - name: Checkout
- uses: actions/checkout@v3
-
- - name: Get semver number
- id: get_semver
- env:
- TAG_NAME: ${{ github.ref }}
- run: echo "::set-output name=pkg::${TAG_NAME:10}"
-
- - name: Create release on GitHub API
- id: create_release
- uses: actions/create-release@v1
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- with:
- tag_name: ${{ github.ref }}
- release_name: ${{ steps.get_semver.outputs.pkg }}
- body: |
- :scroll: [Changelog](https://github.com/${{ github.repository }}/blob/${{ steps.get_semver.outputs.pkg }}/CHANGELOG.md)
- draft: false
- prerelease: false
diff --git a/source/admin/.github/workflows/labeler.yml b/source/admin/.github/workflows/labeler.yml
deleted file mode 100644
index 0cac4af..0000000
--- a/source/admin/.github/workflows/labeler.yml
+++ /dev/null
@@ -1,30 +0,0 @@
-name: Label PR
-on:
- pull_request:
- types: [opened, edited]
-
-jobs:
- label-pr:
- if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork == false
- runs-on: ubuntu-latest
- steps:
- - uses: netlify/pr-labeler-action@v1.0.0
- if: startsWith(github.event.pull_request.title, 'fix')
- with:
- token: '${{ secrets.GITHUB_TOKEN }}'
- label: 'type: bug'
- - uses: netlify/pr-labeler-action@v1.0.0
- if: startsWith(github.event.pull_request.title, 'chore')
- with:
- token: '${{ secrets.GITHUB_TOKEN }}'
- label: 'type: chore'
- - uses: netlify/pr-labeler-action@v1.0.0
- if: startsWith(github.event.pull_request.title, 'feat')
- with:
- token: '${{ secrets.GITHUB_TOKEN }}'
- label: 'type: feature'
- - uses: netlify/pr-labeler-action@v1.0.0
- if: startsWith(github.event.pull_request.title, 'security')
- with:
- token: '${{ secrets.GITHUB_TOKEN }}'
- label: 'type: security'
diff --git a/source/admin/.github/workflows/nodejs.yml b/source/admin/.github/workflows/nodejs.yml
deleted file mode 100644
index 9b09f82..0000000
--- a/source/admin/.github/workflows/nodejs.yml
+++ /dev/null
@@ -1,62 +0,0 @@
-name: Node CI
-
-on:
- push:
- pull_request:
- types: [opened, synchronize, reopened]
-
-jobs:
- changes:
- runs-on: ubuntu-latest
- outputs:
- cms: ${{ steps.filter.outputs.cms }}
- steps:
- - uses: actions/checkout@v3
- - uses: dorny/paths-filter@v2
- id: filter
- with:
- filters: |
- cms:
- - '!website/**'
-
- build:
- needs: changes
- runs-on: ${{ matrix.os }}
- strategy:
- matrix:
- os: [macos-latest, windows-latest, ubuntu-latest]
- node-version: [20.x, 22.x]
- fail-fast: true
- if: ${{ needs.changes.outputs.cms == 'true' }}
- steps:
- - uses: actions/checkout@v3
- - name: Use Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v3
- with:
- node-version: ${{ matrix.node-version }}
- check-latest: true
- cache: 'npm'
- - name: log versions
- run: node --version && npm --version && yarn --version
- - name: install dependencies
- run: npm ci
- - name: run unit tests
- run: npm run test:ci
- - name: build demo site
- run: npm run build:demo
- - name: run e2e tests
- if: matrix.os == 'ubuntu-latest' && matrix.node-version == '22.x'
- run: npm run test:e2e:run-ci
- env:
- IS_FORK: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork == true || github.repository_owner != 'decaporg' }}
- CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
- NODE_OPTIONS: --max-old-space-size=4096
- TZ: Europe/Amsterdam
- - uses: actions/upload-artifact@v4
- if: matrix.os == 'ubuntu-latest' && matrix.node-version == '22.x' && failure()
- with:
- name: cypress-results
- path: |
- cypress/screenshots
- cypress/videos
-
diff --git a/source/admin/.gitignore b/source/admin/.gitignore
deleted file mode 100644
index 01ce5e5..0000000
--- a/source/admin/.gitignore
+++ /dev/null
@@ -1,22 +0,0 @@
-dist/
-bin/
-public/
-node_modules/
-npm-debug.log
-.DS_Store
-.tern-project
-yarn-error.log
-.vscode/
-.idea/
-manifest.yml
-.imdone/
-cypress/videos
-cypress/screenshots
-__diff_output__
-coverage/
-.cache
-*.log
-.env
-.temp/
-storybook-static/
-.nx
diff --git a/source/admin/.husky/commit-msg b/source/admin/.husky/commit-msg
deleted file mode 100644
index e8511ea..0000000
--- a/source/admin/.husky/commit-msg
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/sh
-. "$(dirname "$0")/_/husky.sh"
-
-npx --no-install commitlint --edit $1
diff --git a/source/admin/.npmrc b/source/admin/.npmrc
deleted file mode 100644
index 84496ae..0000000
--- a/source/admin/.npmrc
+++ /dev/null
@@ -1,2 +0,0 @@
-legacy-peer-deps=true
-lockfileVersion=3
diff --git a/source/admin/.nvmrc b/source/admin/.nvmrc
deleted file mode 100644
index cbe86a2..0000000
--- a/source/admin/.nvmrc
+++ /dev/null
@@ -1 +0,0 @@
---lts
diff --git a/source/admin/.prettierignore b/source/admin/.prettierignore
deleted file mode 100644
index b88f700..0000000
--- a/source/admin/.prettierignore
+++ /dev/null
@@ -1,9 +0,0 @@
-dist/
-bin/
-public/
-.cache/
-packages/decap-cms-backend-github/src/fragmentTypes.js
-packages/decap-cms-backend-gitlab/src/AuthenticationPage.js
-packages/decap-cms-backend-proxy/src/implementation.ts
-
-/.nx/cache
\ No newline at end of file
diff --git a/source/admin/.prettierrc b/source/admin/.prettierrc
deleted file mode 100644
index 30e01f3..0000000
--- a/source/admin/.prettierrc
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "arrowParens": "avoid",
- "trailingComma": "all",
- "singleQuote": true,
- "printWidth": 100
-}
diff --git a/source/admin/.storybook/main.js b/source/admin/.storybook/main.js
deleted file mode 100644
index af85df4..0000000
--- a/source/admin/.storybook/main.js
+++ /dev/null
@@ -1,7 +0,0 @@
-module.exports = {
- stories: [
- '../packages/decap-cms-core/src/**/*.stories.js',
- '../packages/decap-cms-ui-default/src/**/*.stories.js',
- ],
- addons: ['@storybook/addon-actions', '@storybook/addon-links'],
-};
diff --git a/source/admin/.stylelintrc b/source/admin/.stylelintrc
deleted file mode 100644
index 88baf6a..0000000
--- a/source/admin/.stylelintrc
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "processors": ["stylelint-processor-styled-components"],
- "extends": ["stylelint-config-standard-scss", "stylelint-config-styled-components"],
- "customSyntax": "postcss-scss",
- "rules": {
- "block-no-empty": null,
- "no-duplicate-selectors": null,
- "no-empty-source": null,
- "no-extra-semicolons": null,
- "declaration-empty-line-before": null,
- "string-quotes": null,
- "selector-class-pattern": null,
- "selector-pseudo-element-colon-notation": null,
- "rule-empty-line-before": null,
- "declaration-colon-newline-after": null,
- "at-rule-empty-line-before": null,
- "alpha-value-notation": null,
- "color-function-notation": null,
- "keyframes-name-pattern": null,
- "value-list-comma-newline-after": null,
- "no-descending-specificity": null,
- "selector-type-no-unknown": [
- true,
- {
- "ignoreTypes": ["$dummyValue"]
- }
- ],
- "value-keyword-case": [
- "lower",
- { "ignoreKeywords": ["dummyValue"], "camelCaseSvgKeywords": true }
- ]
- },
- "ignoreFiles": ["packages/decap-cms-lib-auth/index.d.ts"]
-}
diff --git a/source/admin/CHANGELOG.md b/source/admin/CHANGELOG.md
deleted file mode 100644
index ee878a4..0000000
--- a/source/admin/CHANGELOG.md
+++ /dev/null
@@ -1,419 +0,0 @@
-# Changelog
-Decap CMS is a collection of npm packages with their own versions and changelogs, each listed
-below. The legacy pre-2.0 changelog is below as well.
-
-## Core and distributions
-- [decap-cms](https://github.com/decaporg/decap-cms/blob/main/packages/decap-cms/CHANGELOG.md)
-- [decap-cms-core](https://github.com/decaporg/decap-cms/blob/main/packages/decap-cms-core/CHANGELOG.md)
-
-## Shared libraries
-- [decap-cms-lib-auth](https://github.com/decaporg/decap-cms/blob/main/packages/decap-cms-lib-auth/CHANGELOG.md)
-- [decap-cms-lib-util](https://github.com/decaporg/decap-cms/blob/main/packages/decap-cms-lib-util/CHANGELOG.md)
-- [decap-cms-ui-default](https://github.com/decaporg/decap-cms/blob/main/packages/decap-cms-ui-default/CHANGELOG.md)
-
-## Backends
-- [decap-cms-backend-bitbucket](https://github.com/decaporg/decap-cms/blob/main/packages/decap-cms-backend-bitbucket/CHANGELOG.md)
-- [decap-cms-backend-git-gateway](https://github.com/decaporg/decap-cms/blob/main/packages/decap-cms-backend-git-gateway/CHANGELOG.md)
-- [decap-cms-backend-github](https://github.com/decaporg/decap-cms/blob/main/packages/decap-cms-backend-github/CHANGELOG.md)
-- [decap-cms-backend-gitlab](https://github.com/decaporg/decap-cms/blob/main/packages/decap-cms-backend-gitlab/CHANGELOG.md)
-- [decap-cms-backend-test](https://github.com/decaporg/decap-cms/blob/main/packages/decap-cms-backend-test/CHANGELOG.md)
-
-## Editor Components
-- [decap-cms-editor-component-image](https://github.com/decaporg/decap-cms/blob/main/packages/decap-cms-editor-component-image/CHANGELOG.md)
-
-## Widgets
-- [decap-cms-widget-boolean](https://github.com/decaporg/decap-cms/blob/main/packages/decap-cms-widget-boolean/CHANGELOG.md)
-- [decap-cms-widget-date](https://github.com/decaporg/decap-cms/blob/main/packages/decap-cms-widget-date/CHANGELOG.md)
-- [decap-cms-widget-datetime](https://github.com/decaporg/decap-cms/blob/main/packages/decap-cms-widget-datetime/CHANGELOG.md)
-- [decap-cms-widget-file](https://github.com/decaporg/decap-cms/blob/main/packages/decap-cms-widget-file/CHANGELOG.md)
-- [decap-cms-widget-image](https://github.com/decaporg/decap-cms/blob/main/packages/decap-cms-widget-image/CHANGELOG.md)
-- [decap-cms-widget-list](https://github.com/decaporg/decap-cms/blob/main/packages/decap-cms-widget-list/CHANGELOG.md)
-- [decap-cms-widget-markdown](https://github.com/decaporg/decap-cms/blob/main/packages/decap-cms-widget-markdown/CHANGELOG.md)
-- [decap-cms-widget-number](https://github.com/decaporg/decap-cms/blob/main/packages/decap-cms-widget-number/CHANGELOG.md)
-- [decap-cms-widget-object](https://github.com/decaporg/decap-cms/blob/main/packages/decap-cms-widget-object/CHANGELOG.md)
-- [decap-cms-widget-relation](https://github.com/decaporg/decap-cms/blob/main/packages/decap-cms-widget-relation/CHANGELOG.md)
-- [decap-cms-widget-select](https://github.com/decaporg/decap-cms/blob/main/packages/decap-cms-widget-select/CHANGELOG.md)
-- [decap-cms-widget-string](https://github.com/decaporg/decap-cms/blob/main/packages/decap-cms-widget-string/CHANGELOG.md)
-- [decap-cms-widget-text](https://github.com/decaporg/decap-cms/blob/main/packages/decap-cms-widget-text/CHANGELOG.md)
-
-## Legacy Changelog
-
-## [Unreleased] ([demo](https://cms-demo.netlify.com/))
-
- Changes that have landed in main but are not yet released.
- Click to see more.
-
-
- ## v2
- * (possibly breaking): return date object from date/datetime widgets if no format set ([@erquhart](https://github.com/erquhart) in [#1296](https://github.com/decaporg/decap-cms/pull/1296))
- * check for title/slug field on config load ([@tech4him1](https://github.com/tech4him1) in [#1203](https://github.com/decaporg/decap-cms/pull/1203))
-
foo
- `); - }); - it('does nothing at start of first block in document when non-empty and non-default', () => { - cy.focused() - .clickHeadingOneButton() - .type('foo') - .setCursorBefore('foo') - .backspace({ times: 4 }) - .confirmMarkdownEditorContent(` -foo
-foobarbaz
- `); - // }); - }); -}); diff --git a/source/admin/cypress/e2e/markdown_widget_code_block_spec.js b/source/admin/cypress/e2e/markdown_widget_code_block_spec.js deleted file mode 100644 index 4ecce19..0000000 --- a/source/admin/cypress/e2e/markdown_widget_code_block_spec.js +++ /dev/null @@ -1,136 +0,0 @@ -import { oneLineTrim, stripIndent } from 'common-tags'; -import '../utils/dismiss-local-backup'; - -describe('Markdown widget code block', () => { - before(() => { - Cypress.config('defaultCommandTimeout', 4000); - cy.task('setupBackend', { backend: 'test' }); - }); - - beforeEach(() => { - cy.loginAndNewPost(); - cy.clearMarkdownEditorContent(); - }); - - after(() => { - cy.task('teardownBackend', { backend: 'test' }); - }); - describe('code block', () => { - it('outputs code', () => { - // eslint-disable-next-line cypress/no-unnecessary-waiting - cy - .insertCodeBlock() - .type('foo') - .enter() - .type('bar') - .confirmMarkdownEditorContent( - ` - ${codeBlock(` - foo - bar - `)} - `, - ) - .wait(500) - .clickModeToggle().confirmMarkdownEditorContent(` - ${codeBlockRaw(` - foo - bar - `)} - `); - }); - }); -}); - -function codeBlockRaw(content) { - return ['```', ...stripIndent(content).split('\n'), '```'] - .map( - line => oneLineTrim` -${line}
- xxxxxxxxxx
- foo
- - `); - }); - it('creates new default block when selection collapsed at end of non-default block', () => { - cy.clickHeadingOneButton() - .type('foo') - .enter() - .confirmMarkdownEditorContent(` -
-
-
-
-
-
-
-
- foo -
- `) - .type(replaceMod(HOT_KEY_MAP['bold'])); - }); - }); - - describe('italic', () => { - it('pressing mod+i italicizes the text', () => { - cy.get('@selection') - .type(replaceMod(HOT_KEY_MAP['italic'])) - .confirmMarkdownEditorContent(` -- foo -
- `) - .type(replaceMod(HOT_KEY_MAP['italic'])); - }); - }); - - describe('strikethrough', () => { - it('pressing mod+shift+s displays a strike through the text', () => { - cy.get('@selection') - .type(replaceMod(HOT_KEY_MAP['strikethrough'])) - .confirmMarkdownEditorContent(` -
- foo
-
- foo
-
foo
-foo
-bar
-foo
-bar
- -foo
- -foo
-bar
-baz
-foo
-bar
-baz
-foo
-bar
-baz
- `); - }); - - it('affects only the current block with collapsed selection', () => { - cy - .focused() - .type('foo') - .enter() - .type('bar') - .enter() - .type('baz') - .up() - .clickUnorderedListButton().confirmMarkdownEditorContent(` -foo
-bar
-baz
- `); - }); - - it('wrap each bottom-most block in a selection with a list item block', () => { - // eslint-disable-next-line cypress/no-unnecessary-waiting - cy - .focused() - .type('foo') - .enter() - .type('bar') - .enter() - .type('baz') - .setSelection('foo', 'baz') - .wait(500) - .clickUnorderedListButton().confirmMarkdownEditorContent(` -foo
-bar
-baz
-foo
-bar
-baz
- `); - }); - - it('combines adjacent same-typed lists, not differently typed lists', () => { - cy.focused() - .type('foo') - .enter() - .type('bar') - .enter() - .type('baz') - .up() - .clickUnorderedListButton() - .up() - .clickUnorderedListButton() - .confirmMarkdownEditorContent( - ` -foo
-bar
-baz
- `, - ) - .down({ times: 2 }) - .focused() - .clickUnorderedListButton() - .confirmMarkdownEditorContent( - ` -foo
-bar
-baz
-foo
-bar
-qux
-baz
-foo
-bar
-quux
-qux
-baz
-foo
-bar
-quux
-qux
-baz
-foo
- //bar
- //baz
- //foo
- //bar
- //baz
- // `, - // ) - // .clickUnorderedListButton() - // .confirmMarkdownEditorContent( - // ` - //foo
- //bar
- //baz
- //foo
- //bar
- //baz
- // `, - // ) - // .clickUnorderedListButton() - // .tabkey() - // .setCursorAfter('baz') - // .enter() - // .tabkey() - // .type('qux') - // .confirmMarkdownEditorContent( - // ` - //foo
- //bar
- //baz
- //qux
- //foo
- //bar
- //baz
- //qux
- //foo
- //bar
- //baz
- //qux
- //foo
-foo
-bar
-foo
-foo
- -foo
-foo
-bar
-foo
-bar
-foo
-foo
-foo
-bar
-baz
-foo
-bar
-baz
-foo
-bar
-baz
-
- f
-
- oo
-
-
- -- `) - .clickQuoteButton() - .confirmMarkdownEditorContent(` - - `); - }); - it('toggles empty quote block on and off for current block', () => { - cy.focused() - .type('foo') - .clickQuoteButton() - .confirmMarkdownEditorContent(` -
-- `) - .clickQuoteButton() - .confirmMarkdownEditorContent(` -foo
-
foo
- `); - }); - it('toggles entire quote block without expanded selection', () => { - cy.clickQuoteButton() - .type('foo') - .enter() - .type('bar') - .clickQuoteButton() - .confirmMarkdownEditorContent(` -foo
-bar
- `); - }); - it('toggles entire quote block with complex content', () => { - cy.clickQuoteButton() - .clickUnorderedListButton() - .clickHeadingOneButton() - .type('foo') - .enter({ times: 2 }) // First Enter creates new list item. Second Enter turns that list item into a default block. - .clickQuoteButton() // Unwrap the quote block. - .confirmMarkdownEditorContent(` --- `) - .clickQuoteButton() - .confirmMarkdownEditorContent(` -foo
-bar
-
foo
-bar
- `) - .clickQuoteButton() - .confirmMarkdownEditorContent(` --- `); - }); - it('toggles empty quote block on and off for partially selected blocks', () => { - // eslint-disable-next-line cypress/no-unnecessary-waiting - cy.focused() - .type('foo') - .enter() - .type('bar') - .setSelection('oo', 'ba') - .wait(500) - .clickQuoteButton() - .confirmMarkdownEditorContent(` -foo
-bar
-
-- `) - .clickQuoteButton() - .confirmMarkdownEditorContent(` -foo
-bar
-
foo
-bar
- `) - .clickQuoteButton() - .confirmMarkdownEditorContent(` --- `); - }); - it('toggles quote block on and off for multiple selected list items', () => { - // eslint-disable-next-line cypress/no-unnecessary-waiting - cy.focused() - .clickUnorderedListButton() - .type('foo') - .enter() - .type('bar') - .setSelection('foo', 'bar') - .wait(500) - .clickQuoteButton() - .confirmMarkdownEditorContent(` -foo
-bar
-
-- `) - .clickQuoteButton() - .confirmMarkdownEditorContent(` --
-- -
-foo
-- -
-bar
-
foo
-bar
-foo
--- `) - }); - it('creates new quote block if parent is not a quote, can deeply nest', () => { - cy.clickQuoteButton() - .clickUnorderedListButton() - .clickQuoteButton() - .clickUnorderedListButton() - .clickQuoteButton() - .clickUnorderedListButton() - .clickQuoteButton() - .type('foo') - // Content should contains 4-
-- -
-bar
-- -
-baz
-
tags and 3tags - .confirmMarkdownEditorContent(` -
-- `) - /* - * First Enter creates new paragraph within the innermost block quote. - * Second Enter moves that paragraph one level up to become sibling of the previous quote block and direct child of a list item. - * Third Enter to turn that paragraph into a list item and move it one level up. - * Repeat the circle for three more times to reach the second list item of the outermost list block. - * Then Enter again to turn that list item into a paragraph and move it one level up to become sibling of the outermost list and - * direct child of the outermost block quote. - */ - .enter({ times: 10 }) - .type('bar') - .confirmMarkdownEditorContent(` --
-- -
----
-- -
----
-- -
---foo
--- `) - /* The GOAL is to delete all the text content inside this deeply nested block quote and turn it into a default paragraph block on top level. - * We need: - * 3 Backspace to delete the word “bar”. - * 1 Backspace to remove the paragraph that contains bar and bring cursor to the end of the unordered list which is direct child of the outermost block quote. - * 3 Backspace to remove the word “foo”. - * 1 Backspace to remove the current block quote that the cursor is on, 1 Backspace to remove the list that wraps the block quote. Repeat this step for three times for a total of 6 Backspace until the cursor is on the outermost block quote. - * 1 Backspace to remove to toggle off the outermost block quote and turn it into a default paragraph. - * Total Backspaces required: 3 + 1 + 3 + ((1 + 1) * 3) + 1 = 14 - */ - .backspace({ times: 14 }) - }); - // }); - - // describe('backspace inside quote', () => { - it('joins two paragraphs', () => { - cy.clickQuoteButton() - .type('foo') - .enter() - .type('bar') - .setCursorBefore('bar') - .backspace() - .confirmMarkdownEditorContent(` --
-- -
----
-- -
----
-- -
---foo
-bar
--- `); - }); - it('joins quote with previous quote', () => { - cy.clickQuoteButton() - .type('foo') - .enter({ times: 2 }) - .clickQuoteButton() - .type('bar') - .confirmMarkdownEditorContent(` -foobar
---foo
--- `) - .setCursorBefore('bar') - .backspace() - .confirmMarkdownEditorContent(` -bar
--- `); - }); - it('removes first block from quote when focused at first block at start', () => { - // eslint-disable-next-line cypress/no-unnecessary-waiting - cy.clickQuoteButton() - .type('foo') - .enter() - .type('bar') - .setCursorBefore('foo') - .wait(500) - .backspace() - .confirmMarkdownEditorContent(` -foo
-bar
-foo
--- `) - }); - // }); - - // describe('enter inside quote', () => { - it('creates new block inside quote', () => { - // eslint-disable-next-line cypress/no-unnecessary-waiting - cy.clickQuoteButton() - .type('foo') - .enter() - .confirmMarkdownEditorContent(` -bar
--- `) - .type('bar') - .setCursorAfter('ba') - .wait(500) - .enter() - .confirmMarkdownEditorContent(` -foo
- --- `); - }); - it('creates new block after quote from empty last block', () => { - cy.clickQuoteButton() - .type('foo') - .enter() - .enter() - .confirmMarkdownEditorContent(` -foo
-ba
-r
--- - `) - }); - // }); - }); -}); diff --git a/source/admin/cypress/e2e/media_library_spec_bitbucket_backend.js b/source/admin/cypress/e2e/media_library_spec_bitbucket_backend.js deleted file mode 100644 index af6c0e5..0000000 --- a/source/admin/cypress/e2e/media_library_spec_bitbucket_backend.js +++ /dev/null @@ -1,27 +0,0 @@ -import fixture from './common/media_library'; -import { entry1 } from './common/entries'; -import * as specUtils from './common/spec_utils'; - -const backend = 'bitbucket'; - -describe('BitBucket Backend Media Library - REST API', () => { - let taskResult = { data: {} }; - - before(() => { - specUtils.before(taskResult, {}, backend); - }); - - after(() => { - specUtils.after(taskResult, backend); - }); - - beforeEach(() => { - specUtils.beforeEach(taskResult, backend); - }); - - afterEach(() => { - specUtils.afterEach(taskResult, backend); - }); - - fixture({ entries: [entry1], getUser: () => taskResult.data.user }); -}); diff --git a/source/admin/cypress/e2e/media_library_spec_bitbucket_backend_large_media.js b/source/admin/cypress/e2e/media_library_spec_bitbucket_backend_large_media.js deleted file mode 100644 index 56492b6..0000000 --- a/source/admin/cypress/e2e/media_library_spec_bitbucket_backend_large_media.js +++ /dev/null @@ -1,28 +0,0 @@ -import fixture from './common/media_library'; -import { entry1 } from './common/entries'; -import * as specUtils from './common/spec_utils'; - -const backend = 'bitbucket'; -const lfs = true; - -describe('BitBucket Backend Media Library - Large Media', () => { - let taskResult = { data: {} }; - - before(() => { - specUtils.before(taskResult, { lfs }, backend); - }); - - after(() => { - specUtils.after(taskResult, backend); - }); - - beforeEach(() => { - specUtils.beforeEach(taskResult, backend); - }); - - afterEach(() => { - specUtils.afterEach(taskResult, backend); - }); - - fixture({ entries: [entry1], getUser: () => taskResult.data.user }); -}); diff --git a/source/admin/cypress/e2e/media_library_spec_git-gateway_github_backend_large_media.js b/source/admin/cypress/e2e/media_library_spec_git-gateway_github_backend_large_media.js deleted file mode 100644 index 8ca2fa2..0000000 --- a/source/admin/cypress/e2e/media_library_spec_git-gateway_github_backend_large_media.js +++ /dev/null @@ -1,28 +0,0 @@ -import fixture from './common/media_library'; -import { entry1 } from './common/entries'; -import * as specUtils from './common/spec_utils'; - -const backend = 'git-gateway'; -const provider = 'github'; - -describe('Git Gateway (GitHub) Backend Media Library - Large Media', () => { - let taskResult = { data: {} }; - - before(() => { - specUtils.before(taskResult, { publish_mode: 'editorial_workflow', provider }, backend); - }); - - after(() => { - specUtils.after(taskResult, backend); - }); - - beforeEach(() => { - specUtils.beforeEach(taskResult, backend); - }); - - afterEach(() => { - specUtils.afterEach(taskResult, backend); - }); - - fixture({ entries: [entry1], getUser: () => taskResult.data.user }); -}); diff --git a/source/admin/cypress/e2e/media_library_spec_git-gateway_gitlab_backend_large_media.js b/source/admin/cypress/e2e/media_library_spec_git-gateway_gitlab_backend_large_media.js deleted file mode 100644 index 0a62c54..0000000 --- a/source/admin/cypress/e2e/media_library_spec_git-gateway_gitlab_backend_large_media.js +++ /dev/null @@ -1,28 +0,0 @@ -import fixture from './common/media_library'; -import { entry1 } from './common/entries'; -import * as specUtils from './common/spec_utils'; - -const backend = 'git-gateway'; -const provider = 'gitlab'; - -describe('Git Gateway (GitLab) Backend Media Library - Large Media', () => { - let taskResult = { data: {} }; - - before(() => { - specUtils.before(taskResult, { publish_mode: 'editorial_workflow', provider }, backend); - }); - - after(() => { - specUtils.after(taskResult, backend); - }); - - beforeEach(() => { - specUtils.beforeEach(taskResult, backend); - }); - - afterEach(() => { - specUtils.afterEach(taskResult, backend); - }); - - fixture({ entries: [entry1], getUser: () => taskResult.data.user }); -}); diff --git a/source/admin/cypress/e2e/media_library_spec_github_backend_graphql.js b/source/admin/cypress/e2e/media_library_spec_github_backend_graphql.js deleted file mode 100644 index 42b8408..0000000 --- a/source/admin/cypress/e2e/media_library_spec_github_backend_graphql.js +++ /dev/null @@ -1,34 +0,0 @@ -import fixture from './common/media_library'; -import { entry1 } from './common/entries'; -import * as specUtils from './common/spec_utils'; - -const backend = 'github'; - -describe('GitHub Backend Media Library - GraphQL API', () => { - const taskResult = { data: {} }; - - before(() => { - specUtils.before( - taskResult, - { - backend: { use_graphql: true }, - publish_mode: 'editorial_workflow', - }, - backend, - ); - }); - - after(() => { - specUtils.after(taskResult, backend); - }); - - beforeEach(() => { - specUtils.beforeEach(taskResult, backend); - }); - - afterEach(() => { - specUtils.afterEach(taskResult, backend); - }); - - fixture({ entries: [entry1], getUser: () => taskResult.data.user }); -}); diff --git a/source/admin/cypress/e2e/media_library_spec_github_backend_rest.js b/source/admin/cypress/e2e/media_library_spec_github_backend_rest.js deleted file mode 100644 index c002946..0000000 --- a/source/admin/cypress/e2e/media_library_spec_github_backend_rest.js +++ /dev/null @@ -1,34 +0,0 @@ -import fixture from './common/media_library'; -import { entry1 } from './common/entries'; -import * as specUtils from './common/spec_utils'; - -const backend = 'github'; - -describe('GitHub Backend Media Library - REST API', () => { - let taskResult = { data: {} }; - - before(() => { - specUtils.before( - taskResult, - { - backend: { use_graphql: false }, - publish_mode: 'editorial_workflow', - }, - backend, - ); - }); - - after(() => { - specUtils.after(taskResult, backend); - }); - - beforeEach(() => { - specUtils.beforeEach(taskResult, backend); - }); - - afterEach(() => { - specUtils.afterEach(taskResult, backend); - }); - - fixture({ entries: [entry1], getUser: () => taskResult.data.user }); -}); diff --git a/source/admin/cypress/e2e/media_library_spec_gitlab_backend.js b/source/admin/cypress/e2e/media_library_spec_gitlab_backend.js deleted file mode 100644 index 6855242..0000000 --- a/source/admin/cypress/e2e/media_library_spec_gitlab_backend.js +++ /dev/null @@ -1,27 +0,0 @@ -import fixture from './common/media_library'; -import { entry1 } from './common/entries'; -import * as specUtils from './common/spec_utils'; - -const backend = 'gitlab'; - -describe('GitLab Backend Media Library - REST API', () => { - let taskResult = { data: {} }; - - before(() => { - specUtils.before(taskResult, { publish_mode: 'editorial_workflow' }, backend); - }); - - after(() => { - specUtils.after(taskResult, backend); - }); - - beforeEach(() => { - specUtils.beforeEach(taskResult, backend); - }); - - afterEach(() => { - specUtils.afterEach(taskResult, backend); - }); - - fixture({ entries: [entry1], getUser: () => taskResult.data.user }); -}); diff --git a/source/admin/cypress/e2e/media_library_spec_proxy_git_backend.js b/source/admin/cypress/e2e/media_library_spec_proxy_git_backend.js deleted file mode 100644 index 3538cb6..0000000 --- a/source/admin/cypress/e2e/media_library_spec_proxy_git_backend.js +++ /dev/null @@ -1,29 +0,0 @@ -import fixture from './common/media_library'; -import * as specUtils from './common/spec_utils'; -import { entry1 } from './common/entries'; - -const backend = 'proxy'; -const mode = 'git'; - -describe(`Proxy Backend Media Library - '${mode}' mode`, () => { - let taskResult = { data: {} }; - - before(() => { - specUtils.before(taskResult, { publish_mode: 'editorial_workflow', mode }, backend); - Cypress.config('defaultCommandTimeout', 5 * 1000); - }); - - after(() => { - specUtils.after(taskResult, backend); - }); - - beforeEach(() => { - specUtils.beforeEach(taskResult, backend); - }); - - afterEach(() => { - specUtils.afterEach(taskResult, backend); - }); - - fixture({ entries: [entry1], getUser: () => taskResult.data.user }); -}); diff --git a/source/admin/cypress/e2e/media_library_spec_test_backend.js b/source/admin/cypress/e2e/media_library_spec_test_backend.js deleted file mode 100644 index 2b11ca5..0000000 --- a/source/admin/cypress/e2e/media_library_spec_test_backend.js +++ /dev/null @@ -1,21 +0,0 @@ -import fixture from './common/media_library'; - -const entries = [ - { - title: 'first title', - body: 'first body', - }, -]; - -describe('Test Backend Media Library', () => { - after(() => { - cy.task('teardownBackend', { backend: 'test' }); - }); - - before(() => { - Cypress.config('defaultCommandTimeout', 4000); - cy.task('setupBackend', { backend: 'test' }); - }); - - fixture({ entries }); -}); diff --git a/source/admin/cypress/e2e/search_suggestion_spec.js b/source/admin/cypress/e2e/search_suggestion_spec.js deleted file mode 100644 index ca62135..0000000 --- a/source/admin/cypress/e2e/search_suggestion_spec.js +++ /dev/null @@ -1,71 +0,0 @@ -import { login } from '../utils/steps'; - -const search = (term, collection) => { - cy.get('[class*=SearchInput]').clear({ force: true }); - cy.get('[class*=SearchInput]').type(term, { force: true }); - cy.get('[class*=SuggestionsContainer]').within(() => { - cy.contains(collection).click(); - }); -}; - -const assertSearchHeading = title => { - cy.get('[class*=SearchResultHeading]').should('have.text', title); -}; - -const assertSearchResult = (text, collection) => { - cy.get('[class*=ListCardLink] h2').contains(collection ?? text) -}; - -const assertNotInSearch = text => { - cy.get('[class*=ListCardLink] h2').contains(text).should('not.exist'); -}; - -describe('Search Suggestion', () => { - before(() => { - Cypress.config('defaultCommandTimeout', 4000); - cy.task('setupBackend', { backend: 'test' }); - }); - - after(() => { - cy.task('teardownBackend', { backend: 'test' }); - }); - - beforeEach(() => { - login(); - }); - - it('can search in all collections', () => { - search('this', 'All Collections'); - - assertSearchHeading('Search Results for "this"'); - - assertSearchResult('This is post # 20', 'Posts'); - assertSearchResult('This is a TOML front matter post', 'Posts'); - assertSearchResult('This is a JSON front matter post', 'Posts'); - assertSearchResult('This is a YAML front matter post', 'Posts'); - assertSearchResult('This FAQ item # 5', 'FAQ'); - }); - - it('can search in posts collection', () => { - search('this', 'Posts'); - - assertSearchHeading('Search Results for "this" in Posts'); - - assertSearchResult('This is post # 20'); - assertSearchResult('This is a TOML front matter post'); - assertSearchResult('This is a JSON front matter post'); - assertSearchResult('This is a YAML front matter post'); - - assertNotInSearch('This FAQ item # 5'); - }); - - it('can search in faq collection', () => { - search('this', 'FAQ'); - - assertSearchHeading('Search Results for "this" in FAQ'); - - assertSearchResult('This FAQ item # 5'); - - assertNotInSearch('This is post # 20'); - }); -}); diff --git a/source/admin/cypress/e2e/simple_workflow_spec_bitbucket_backend.js b/source/admin/cypress/e2e/simple_workflow_spec_bitbucket_backend.js deleted file mode 100644 index 1032eca..0000000 --- a/source/admin/cypress/e2e/simple_workflow_spec_bitbucket_backend.js +++ /dev/null @@ -1,30 +0,0 @@ -import fixture from './common/simple_workflow'; -import * as specUtils from './common/spec_utils'; -import { entry1, entry2, entry3 } from './common/entries'; - -const backend = 'bitbucket'; - -describe('BitBucket Backend Simple Workflow', () => { - let taskResult = { data: {} }; - - before(() => { - specUtils.before(taskResult, { publish_mode: 'simple' }, backend); - }); - - after(() => { - specUtils.after(taskResult, backend); - }); - - beforeEach(() => { - specUtils.beforeEach(taskResult, backend); - }); - - afterEach(() => { - specUtils.afterEach(taskResult, backend); - }); - - fixture({ - entries: [entry1, entry2, entry3], - getUser: () => taskResult.data.user, - }); -}); diff --git a/source/admin/cypress/e2e/simple_workflow_spec_git-gateway_github_backend.js b/source/admin/cypress/e2e/simple_workflow_spec_git-gateway_github_backend.js deleted file mode 100644 index e3b96e3..0000000 --- a/source/admin/cypress/e2e/simple_workflow_spec_git-gateway_github_backend.js +++ /dev/null @@ -1,31 +0,0 @@ -import fixture from './common/simple_workflow'; -import * as specUtils from './common/spec_utils'; -import { entry1, entry2, entry3 } from './common/entries'; - -const backend = 'git-gateway'; -const provider = 'github'; - -describe('Git Gateway (GitHub) Backend Simple Workflow', () => { - let taskResult = { data: {} }; - - before(() => { - specUtils.before(taskResult, { publish_mode: 'simple', provider }, backend); - }); - - after(() => { - specUtils.after(taskResult, backend); - }); - - beforeEach(() => { - specUtils.beforeEach(taskResult, backend); - }); - - afterEach(() => { - specUtils.afterEach(taskResult, backend); - }); - - fixture({ - entries: [entry1, entry2, entry3], - getUser: () => taskResult.data.user, - }); -}); diff --git a/source/admin/cypress/e2e/simple_workflow_spec_git-gateway_gitlab_backend.js b/source/admin/cypress/e2e/simple_workflow_spec_git-gateway_gitlab_backend.js deleted file mode 100644 index 9c70c41..0000000 --- a/source/admin/cypress/e2e/simple_workflow_spec_git-gateway_gitlab_backend.js +++ /dev/null @@ -1,31 +0,0 @@ -import fixture from './common/simple_workflow'; -import * as specUtils from './common/spec_utils'; -import { entry1, entry2, entry3 } from './common/entries'; - -const backend = 'git-gateway'; -const provider = 'gitlab'; - -describe('Git Gateway (GitLab) Backend Simple Workflow', () => { - let taskResult = { data: {} }; - - before(() => { - specUtils.before(taskResult, { publish_mode: 'simple', provider }, backend); - }); - - after(() => { - specUtils.after(taskResult, backend); - }); - - beforeEach(() => { - specUtils.beforeEach(taskResult, backend); - }); - - afterEach(() => { - specUtils.afterEach(taskResult, backend); - }); - - fixture({ - entries: [entry1, entry2, entry3], - getUser: () => taskResult.data.user, - }); -}); diff --git a/source/admin/cypress/e2e/simple_workflow_spec_github_backend_graphql.js b/source/admin/cypress/e2e/simple_workflow_spec_github_backend_graphql.js deleted file mode 100644 index 4598bae..0000000 --- a/source/admin/cypress/e2e/simple_workflow_spec_github_backend_graphql.js +++ /dev/null @@ -1,37 +0,0 @@ -import fixture from './common/simple_workflow'; -import * as specUtils from './common/spec_utils'; -import { entry1, entry2, entry3 } from './common/entries'; - -const backend = 'github'; - -describe('GitHub Backend Simple Workflow - GraphQL API', () => { - const taskResult = { data: {} }; - - before(() => { - specUtils.before( - taskResult, - { - backend: { use_graphql: true }, - publish_mode: 'simple', - }, - backend, - ); - }); - - after(() => { - specUtils.after(taskResult, backend); - }); - - beforeEach(() => { - specUtils.beforeEach(taskResult, backend); - }); - - afterEach(() => { - specUtils.afterEach(taskResult, backend); - }); - - fixture({ - entries: [entry1, entry2, entry3], - getUser: () => taskResult.data.user, - }); -}); diff --git a/source/admin/cypress/e2e/simple_workflow_spec_github_backend_rest.js b/source/admin/cypress/e2e/simple_workflow_spec_github_backend_rest.js deleted file mode 100644 index ea7fe63..0000000 --- a/source/admin/cypress/e2e/simple_workflow_spec_github_backend_rest.js +++ /dev/null @@ -1,37 +0,0 @@ -import fixture from './common/simple_workflow'; -import * as specUtils from './common/spec_utils'; -import { entry1, entry2, entry3 } from './common/entries'; - -const backend = 'github'; - -describe('GitHub Backend Simple Workflow - REST API', () => { - let taskResult = { data: {} }; - - before(() => { - specUtils.before( - taskResult, - { - backend: { use_graphql: false }, - publish_mode: 'simple', - }, - backend, - ); - }); - - after(() => { - specUtils.after(taskResult, backend); - }); - - beforeEach(() => { - specUtils.beforeEach(taskResult, backend); - }); - - afterEach(() => { - specUtils.afterEach(taskResult, backend); - }); - - fixture({ - entries: [entry1, entry2, entry3], - getUser: () => taskResult.data.user, - }); -}); diff --git a/source/admin/cypress/e2e/simple_workflow_spec_gitlab_backend.js b/source/admin/cypress/e2e/simple_workflow_spec_gitlab_backend.js deleted file mode 100644 index 63e3572..0000000 --- a/source/admin/cypress/e2e/simple_workflow_spec_gitlab_backend.js +++ /dev/null @@ -1,30 +0,0 @@ -import fixture from './common/simple_workflow'; -import * as specUtils from './common/spec_utils'; -import { entry1, entry2, entry3 } from './common/entries'; - -const backend = 'gitlab'; - -describe('GitLab Backend Simple Workflow', () => { - let taskResult = { data: {} }; - - before(() => { - specUtils.before(taskResult, { publish_mode: 'simple' }, backend); - }); - - after(() => { - specUtils.after(taskResult, backend); - }); - - beforeEach(() => { - specUtils.beforeEach(taskResult, backend); - }); - - afterEach(() => { - specUtils.afterEach(taskResult, backend); - }); - - fixture({ - entries: [entry1, entry2, entry3], - getUser: () => taskResult.data.user, - }); -}); diff --git a/source/admin/cypress/e2e/simple_workflow_spec_proxy_fs_backend.js b/source/admin/cypress/e2e/simple_workflow_spec_proxy_fs_backend.js deleted file mode 100644 index 8e8f259..0000000 --- a/source/admin/cypress/e2e/simple_workflow_spec_proxy_fs_backend.js +++ /dev/null @@ -1,32 +0,0 @@ -import fixture from './common/simple_workflow'; -import * as specUtils from './common/spec_utils'; -import { entry1, entry2, entry3 } from './common/entries'; - -const backend = 'proxy'; -const mode = 'fs'; - -describe(`Proxy Backend Simple Workflow - '${mode}' mode`, () => { - const taskResult = { data: {} }; - - before(() => { - specUtils.before(taskResult, { publish_mode: 'simple', mode }, backend); - Cypress.config('defaultCommandTimeout', 5 * 1000); - }); - - after(() => { - specUtils.after(taskResult, backend); - }); - - beforeEach(() => { - specUtils.beforeEach(taskResult, backend); - }); - - afterEach(() => { - specUtils.afterEach(taskResult, backend); - }); - - fixture({ - entries: [entry1, entry2, entry3], - getUser: () => taskResult.data.user, - }); -}); diff --git a/source/admin/cypress/e2e/simple_workflow_spec_proxy_git_backend.js b/source/admin/cypress/e2e/simple_workflow_spec_proxy_git_backend.js deleted file mode 100644 index f75155a..0000000 --- a/source/admin/cypress/e2e/simple_workflow_spec_proxy_git_backend.js +++ /dev/null @@ -1,35 +0,0 @@ -import fixture from './common/simple_workflow'; -import * as specUtils from './common/spec_utils'; -import { entry1, entry2, entry3 } from './common/entries'; - -const backend = 'proxy'; -const mode = 'git'; - -describe(`Proxy Backend Simple Workflow - '${mode}' mode`, () => { - let taskResult = { data: {} }; - - before(() => { - specUtils.before(taskResult, { publish_mode: 'simple', mode }, backend); - Cypress.config('defaultCommandTimeout', 5 * 1000); - }); - - after(() => { - specUtils.after(taskResult, backend); - }); - - beforeEach(() => { - if (Cypress.mocha.getRunner().suite.ctx.currentTest.title === 'can create an entry') { - Cypress.mocha.getRunner().suite.ctx.currentTest.skip(); - } - specUtils.beforeEach(taskResult, backend); - }); - - afterEach(() => { - specUtils.afterEach(taskResult, backend); - }); - - fixture({ - entries: [entry1, entry2, entry3], - getUser: () => taskResult.data.user, - }); -}); diff --git a/source/admin/cypress/e2e/simple_workflow_spec_test_backend.js b/source/admin/cypress/e2e/simple_workflow_spec_test_backend.js deleted file mode 100644 index 9fa9467..0000000 --- a/source/admin/cypress/e2e/simple_workflow_spec_test_backend.js +++ /dev/null @@ -1,102 +0,0 @@ -import '../utils/dismiss-local-backup'; -import { - login, - newPost, - populateEntry, - exitEditor, - createPostAndPublish, - assertPublishedEntry, - editPostAndPublish, - createPostPublishAndCreateNew, - createPostPublishAndDuplicate, - editPostPublishAndCreateNew, - editPostPublishAndDuplicate, - duplicatePostAndPublish, -} from '../utils/steps'; - -const entry1 = { - title: 'first title', - body: 'first body', -}; -const entry2 = { - title: 'second title', - body: 'second body', -}; - -const backend = 'test'; - -describe('Test Backend Simple Workflow', () => { - before(() => { - Cypress.config('defaultCommandTimeout', 4000); - cy.task('setupBackend', { backend, options: { publish_mode: 'simple' } }); - }); - - after(() => { - cy.task('teardownBackend', { backend }); - }); - - it('successfully loads', () => { - login(); - }); - - it('can create a new entry', () => { - login(); - newPost(); - populateEntry(entry1, () => {}); - - // new entry should show 'Unsaved changes' - cy.contains('div', 'Unsaved Changes'); - cy.url().should('eq', `http://localhost:8080/#/collections/posts/new`); - exitEditor(); - }); - - it('can publish a new entry', () => { - login(); - createPostAndPublish(entry1); - assertPublishedEntry(entry1); - }); - - it('can publish a new entry and create new', () => { - login(); - createPostPublishAndCreateNew(entry1); - assertPublishedEntry(entry1); - }); - - it('can publish a new entry and duplicate', () => { - login(); - createPostPublishAndDuplicate(entry1); - assertPublishedEntry(entry1); - }); - - it('can edit an existing entry and publish', () => { - login(); - createPostAndPublish(entry1); - assertPublishedEntry(entry1); - - editPostAndPublish(entry1, entry2); - }); - - it('can edit an existing entry, publish and create new', () => { - login(); - createPostAndPublish(entry1); - assertPublishedEntry(entry1); - - editPostPublishAndCreateNew(entry1, entry2); - }); - - it('can edit an existing entry, publish and duplicate', () => { - login(); - createPostAndPublish(entry1); - assertPublishedEntry(entry1); - - editPostPublishAndDuplicate(entry1, entry2); - }); - - it('can duplicate an existing entry', () => { - login(); - createPostAndPublish(entry1); - assertPublishedEntry(entry1); - - duplicatePostAndPublish(entry1); - }); -}); diff --git a/source/admin/cypress/e2e/view_filters_spec.js b/source/admin/cypress/e2e/view_filters_spec.js deleted file mode 100644 index ad7924b..0000000 --- a/source/admin/cypress/e2e/view_filters_spec.js +++ /dev/null @@ -1,102 +0,0 @@ -import { login } from '../utils/steps'; - -const filter = term => { - cy.contains('span', 'Filter by').click(); - cy.contains(term).click(); - cy.contains('Contents').click(); -}; - -const assertEntriesCount = count => { - cy.get('[class*=ListCardLink]').should('have.length', count); -}; - -const assertInEntries = text => { - cy.get('[class*=ListCardLink] h2').contains(text); -}; - -const assertNotInEntries = text => { - cy.get('[class*=ListCardLink] h2').contains(text).should('not.exist'); -}; - -describe('View Filter', () => { - before(() => { - Cypress.config('defaultCommandTimeout', 4000); - cy.task('setupBackend', { backend: 'test' }); - }); - - after(() => { - cy.task('teardownBackend', { backend: 'test' }); - }); - - beforeEach(() => { - login(); - }); - - it('can apply string filter', () => { - // enable filter - filter('Posts With Index'); - - assertEntriesCount(20); - for (let i = 1; i <= 20; i++) { - assertInEntries(`This is post # ${i} --`); - } - assertNotInEntries('This is a YAML front matter post'); - assertNotInEntries('This is a JSON front matter post'); - assertNotInEntries('This is a TOML front matter post'); - - // disable filter - filter('Posts With Index'); - assertEntriesCount(23); - for (let i = 1; i <= 20; i++) { - assertInEntries(`This is post # ${i} --`); - } - assertInEntries('This is a YAML front matter post'); - assertInEntries('This is a JSON front matter post'); - assertInEntries('This is a TOML front matter post'); - }); - - it('can apply boolean filter', () => { - // enable filter - filter('Drafts'); - - assertEntriesCount(10); - for (let i = 1; i <= 20; i++) { - const draft = i % 2 === 0; - if (draft) { - assertInEntries(`This is post # ${i} --`); - } else { - assertNotInEntries(`This is post # ${i} --`); - } - } - assertNotInEntries('This is a YAML front matter post'); - assertNotInEntries('This is a JSON front matter post'); - assertNotInEntries('This is a TOML front matter post'); - - // disable filter - filter('Drafts'); - assertEntriesCount(23); - for (let i = 1; i <= 20; i++) { - assertInEntries(`This is post # ${i} --`); - } - assertInEntries('This is a YAML front matter post'); - assertInEntries('This is a JSON front matter post'); - assertInEntries('This is a TOML front matter post'); - }); - - it('can apply multiple filters', () => { - // enable filter - filter('Posts Without Index'); - - assertEntriesCount(3); - - assertInEntries('This is a YAML front matter post'); - assertInEntries('This is a JSON front matter post'); - assertInEntries('This is a TOML front matter post'); - - filter('Drafts'); - - assertEntriesCount(0); - - cy.contains('div', 'No Entries'); - }); -}); diff --git a/source/admin/cypress/e2e/view_groups_spec.js b/source/admin/cypress/e2e/view_groups_spec.js deleted file mode 100644 index d17d3f1..0000000 --- a/source/admin/cypress/e2e/view_groups_spec.js +++ /dev/null @@ -1,70 +0,0 @@ -import { login } from '../utils/steps'; - -const group = term => { - cy.contains('span', 'Group by').click(); - cy.contains(term).click(); - cy.contains('Contents').click(); -}; - -const assertGroupsCount = count => { - cy.get('[class*=GroupContainer]').should('have.length', count); -}; - -const assertEachGroupCount = (id, count) => { - cy.get(`[id='${id}']`).within(() => { - assertEntriesCount(count); - }); -}; - -const assertEntriesCount = count => { - cy.get('[class*=ListCardLink]').should('have.length', count); -}; - -const assertInEntries = text => { - cy.get('[class*=ListCardLink] h2').contains('h2', text); -}; - -describe('View Group', () => { - before(() => { - Cypress.config('defaultCommandTimeout', 4000); - cy.task('setupBackend', { backend: 'test' }); - }); - - after(() => { - cy.task('teardownBackend', { backend: 'test' }); - }); - - beforeEach(() => { - login(); - }); - - it('can apply string group', () => { - // enable group - group('Year'); - - assertGroupsCount(2); - const year = new Date().getFullYear(); - assertEachGroupCount(`Year${year}`, 20); - assertEachGroupCount('Year2015', 3); - - //disable group - group('Year'); - - assertEntriesCount(23); - for (let i = 1; i <= 20; i++) { - assertInEntries(`This is post # ${i} --`); - } - assertInEntries('This is a YAML front matter post'); - assertInEntries('This is a JSON front matter post'); - assertInEntries('This is a TOML front matter post'); - - //enable group - group('Drafts'); - - assertEntriesCount(23); - assertGroupsCount(3); - assertEachGroupCount('Draftstrue', 10); - assertEachGroupCount('Draftsfalse', 10); - assertEachGroupCount('missing_value', 3); - }); -}); diff --git a/source/admin/cypress/fixtures/BitBucket Backend Editorial Workflow__can change status on and publish multiple entries.json b/source/admin/cypress/fixtures/BitBucket Backend Editorial Workflow__can change status on and publish multiple entries.json deleted file mode 100644 index ded522f..0000000 --- a/source/admin/cypress/fixtures/BitBucket Backend Editorial Workflow__can change status on and publish multiple entries.json +++ /dev/null @@ -1,3061 +0,0 @@ -[ - { - "method": "GET", - "url": "/2.0/repositories/owner/repo", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0437190532684", - "Connection": "Keep-Alive", - "X-Request-Count": "82", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3011" - }, - "response": "{\"scm\": \"git\", \"website\": null, \"has_wiki\": false, \"name\": \"repo\", \"links\": {\"watchers\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/watchers\"}, \"branches\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches\"}, \"tags\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/tags\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits\"}, \"clone\": [{\"href\": \"https://owner@bitbucket.org/owner/repo.git\", \"name\": \"https\"}, {\"href\": \"git@bitbucket.org:owner/repo.git\", \"name\": \"ssh\"}], \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"source\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/src\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}, \"hooks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/hooks\"}, \"forks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/forks\"}, \"downloads\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/downloads\"}, \"pullrequests\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests\"}}, \"fork_policy\": \"allow_forks\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\", \"language\": \"\", \"created_on\": \"2020-04-12T09:43:06.141832+00:00\", \"mainbranch\": {\"type\": \"branch\", \"name\": \"master\"}, \"full_name\": \"owner/repo\", \"has_issues\": false, \"owner\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:46:45.423481+00:00\", \"size\": 4362904, \"type\": \"repository\", \"slug\": \"repo\", \"is_private\": false, \"description\": \"\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/user", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0374369621277", - "X-Accepted-OAuth-Scopes": "account", - "Connection": "Keep-Alive", - "X-Request-Count": "837", - "X-Version": "e1ce49ad4aa3", - "X-Frame-Options": "SAMEORIGIN", - "content-length": "1041" - }, - "response": "{\"name\":\"owner\",\"display_name\":\"owner\",\"links\":{\"avatar\":{\"href\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\"}},\"nickname\":\"owner\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0564169883728", - "Connection": "Keep-Alive", - "X-Request-Count": "1813", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokahfoo
-\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/static/media?max_depth=1&pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0398011207581", - "Connection": "Keep-Alive", - "X-Request-Count": "1582", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "78" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: static/media\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.055634021759", - "Connection": "Keep-Alive", - "X-Request-Count": "4707", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0571110248566", - "Connection": "Keep-Alive", - "X-Request-Count": "3381", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts?max_depth=1&pagelen=20", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0549280643463", - "Connection": "Keep-Alive", - "X-Request-Count": "3403", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "6396" - }, - "response": "{\"pagelen\":20,\"values\":[{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"}},\"path\":\"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":1707},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"}},\"path\":\"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2565},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"}},\"path\":\"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2786},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"}},\"path\":\"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":16071},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"}},\"path\":\"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":7465}],\"page\":1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0444581508636", - "Connection": "Keep-Alive", - "X-Request-Count": "1423", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2786" - }, - "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n \n\t \n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0446560382843", - "Connection": "Keep-Alive", - "X-Request-Count": "276", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2565" - }, - "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n\n\t\t\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.
\n\t\t\n\t\n\t \n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0346949100494", - "Connection": "Keep-Alive", - "X-Request-Count": "3645", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1707" - }, - "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-02-02---A-Brief-History-of-Typography.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.120166063309", - "Connection": "Keep-Alive", - "X-Request-Count": "2978", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.149660825729", - "Connection": "Keep-Alive", - "X-Request-Count": "3318", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.153057098389", - "Connection": "Keep-Alive", - "X-Request-Count": "1130", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0512750148773", - "Connection": "Keep-Alive", - "X-Request-Count": "1650", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "16071" - }, - "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western worldâs first major printed books, the âFortyâTwoâLineâ Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western worldâs first major printed books, the âFortyâTwoâLineâ Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 â 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n\n\t \n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information â including revolutionary ideas â transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a âsecretâ. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439â1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him âlike a ray of lightâ.\n\n\n\t
Johannes Gutenberg \n\n\t \n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fustâs son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n\n\t
Early wooden printing press as depicted in 1568. \n\n\t \n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454â55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the FustâSchöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the GutenbergâFust shop might have employed as many as 25 craftsmen.\n\n\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of âmovable typeâ.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n\n\t\t\nAll that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to followâyour grace would be able to read it without effort, and indeed without glasses.
\n\t\t\n\t\n\t \n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in âcuneiformâ style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that âthe decisive factor for the birth of typographyâ, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0433869361877", - "Connection": "Keep-Alive", - "X-Request-Count": "4604", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "7465" - }, - "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didnât mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other â the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n\n\n*The 42âLine Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But itâs the third transition that stripped it naked. Typefaces are faceless these days. Theyâre just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the âright oneâ is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\nâ Massimo Vignelli\n\nTypography is not about typefaces. Itâs not about what looks best, itâs about what feels right. What communicates the message best. Typography, in its essence, is about the message. âTypographical design should perform optically what the speaker creates through voice and gesture of his thoughts.â, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because itâs a safe option. Itâs always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still donât spot it in the street.\n\n\n\t\t\nIt is a press, certainly, but a press from which shall flow in inexhaustible streams⦠Through it, god will spread his word.
\n\t\t\n\t\n\t \n\nTypefaces donât look handmade these days. And thatâs all right. They donât have to. Industrialism took that away from them and weâre fine with it. Weâve traded that part of humanity for a process that produces more books that are easier to read. That canât be bad. And it isnât.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> â Eric Gill\n\nWeâve come close to âperfectionâ in the last five centuries. The letters are crisp and without rough edges. We print our compositions with highâprecision printers on a high quality, machine made paper.\n\n\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we donât care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. Thereâs no meaning in our work. Type sizes, leading, margins⦠Itâs all just a few clicks or lines of code. The message isnât important anymore. Thereâs no more âwhyâ behind the âwhatâ.\n\n## Chasing perfection\n\nHuman beings arenât perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2017-18-08---The-Birth-of-Movable-Type.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0907530784607", - "Connection": "Keep-Alive", - "X-Request-Count": "844", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nKnowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.112693071365", - "Connection": "Keep-Alive", - "X-Request-Count": "1935", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name ~ \"cms/\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0455861091614", - "Connection": "Keep-Alive", - "X-Request-Count": "2683", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0652689933777", - "Connection": "Keep-Alive", - "X-Request-Count": "1275", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0610370635986", - "Connection": "Keep-Alive", - "X-Request-Count": "129", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0659699440002", - "Connection": "Keep-Alive", - "X-Request-Count": "2510", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "105" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: content/posts/1970-01-01-first-title.md\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.093523979187", - "Connection": "Keep-Alive", - "X-Request-Count": "1711", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/.gitattributes", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.048525094986", - "Connection": "Keep-Alive", - "X-Request-Count": "2300", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "136" - }, - "response": "/.github export-ignore\n/.gitattributes export-ignore\n/.editorconfig export-ignore\n/.travis.yml export-ignore\n**/*.js.snap export-ignore\n", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0616898536682", - "Connection": "Keep-Alive", - "X-Request-Count": "4396", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "body": "------WebKitFormBoundary5gnqT7XcB9ex0pYt\r\nContent-Disposition: form-data; name=\"content/posts/1970-01-01-first-title.md\"; filename=\"1970-01-01-first-title.md\"\r\nContent-Type: application/octet-stream\r\n\r\n---\ntemplate: post\ntitle: first title\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\r\n------WebKitFormBoundary5gnqT7XcB9ex0pYt\r\nContent-Disposition: form-data; name=\"message\"\r\n\r\nCreate Post â1970-01-01-first-titleâ\r\n------WebKitFormBoundary5gnqT7XcB9ex0pYt\r\nContent-Disposition: form-data; name=\"branch\"\r\n\r\ncms/posts/1970-01-01-first-title\r\n------WebKitFormBoundary5gnqT7XcB9ex0pYt\r\nContent-Disposition: form-data; name=\"parents\"\r\n\r\nb782b50eefc7d6f6482ac989eb5c9142d5abfa37\r\n------WebKitFormBoundary5gnqT7XcB9ex0pYt--\r\n", - "method": "POST", - "url": "/2.0/repositories/owner/repo/src", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "text/html; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/commit/09ad99ca898ddd5faca69308e429aaec101b5302", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.525287151337", - "Connection": "Keep-Alive", - "X-Request-Count": "2767", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "0" - }, - "response": null, - "status": 201 - }, - { - "body": "{\"title\":\"Create Post “1970-01-01-first-title”\",\"source\":{\"branch\":{\"name\":\"cms/posts/1970-01-01-first-title\"}},\"destination\":{\"branch\":{\"name\":\"master\"}},\"description\":\"Automatically generated by Decap CMS\",\"close_source_branch\":true}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.286502122879", - "Connection": "Keep-Alive", - "X-Request-Count": "3877", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "5261" - }, - "response": "{\"rendered\": {\"description\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \" Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"title\": {\"raw\": \"Create Post “1970-01-01-first-title”\", \"markup\": \"markdown\", \"html\": \"Create Post “1970-01-01-first-title”
\", \"type\": \"rendered\"}}, \"type\": \"pullrequest\", \"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:09ad99ca898d%0Db782b50eefc7?from_pullrequest_id=5\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:09ad99ca898d%0Db782b50eefc7?from_pullrequest_id=5\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"reviewers\": [], \"id\": 5, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:47:04.670916+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"09ad99ca898d\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/09ad99ca898d\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/09ad99ca898d\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 0, \"state\": \"OPEN\", \"task_count\": 0, \"participants\": [], \"reason\": \"\", \"updated_on\": \"2020-04-12T09:47:04.698215+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}", - "status": 201 - }, - { - "body": "{\"content\":{\"raw\":\"decap-cms/draft\"}}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/5/comments", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments/144752560", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.115839004517", - "Connection": "Keep-Alive", - "X-Request-Count": "415", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1551" - }, - "response": "{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments/144752560\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5/_/diff#comment-144752560\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 5, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:47:05.489624+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:47:05.492509+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752560}", - "status": 201 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0997860431671", - "Connection": "Keep-Alive", - "X-Request-Count": "3561", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:09ad99ca898d%0Db782b50eefc7?from_pullrequest_id=5\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:09ad99ca898d%0Db782b50eefc7?from_pullrequest_id=5\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 5, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:47:04.670916+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"09ad99ca898d\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/09ad99ca898d\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/09ad99ca898d\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:47:05.492509+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/5/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0916538238525", - "Connection": "Keep-Alive", - "X-Request-Count": "4445", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments/144752560\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5/_/diff#comment-144752560\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 5, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:47:05.489624+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:47:05.492509+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752560}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/diff/cms/posts/1970-01-01-first-title..master?binary=false", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "must-revalidate, max-age=0", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.13956284523", - "Connection": "Keep-Alive", - "X-Request-Count": "515", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "409" - }, - "response": "diff --git a/content/posts/1970-01-01-first-title.md b/content/posts/1970-01-01-first-title.md\nnew file mode 100644\nindex 0000000..fbe7d6f\n--- /dev/null\n+++ b/content/posts/1970-01-01-first-title.md\n@@ -0,0 +1,10 @@\n+---\n+template: post\n+title: first title\n+date: 1970-01-01T00:00:00.000Z\n+description: first description\n+category: first category\n+tags:\n+ - tag1\n+---\n+first body\n\\ No newline at end of file\n", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/5/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.101561069489", - "Connection": "Keep-Alive", - "X-Request-Count": "4770", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments/144752560\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5/_/diff#comment-144752560\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 5, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:47:05.489624+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:47:05.492509+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752560}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0490310192108", - "Connection": "Keep-Alive", - "X-Request-Count": "321", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3726" - }, - "response": "{\"name\": \"cms/posts/1970-01-01-first-title\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/cms/posts/1970-01-01-first-title\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/cms/posts/1970-01-01-first-title\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"09ad99ca898ddd5faca69308e429aaec101b5302\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/09ad99ca898ddd5faca69308e429aaec101b5302\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/09ad99ca898ddd5faca69308e429aaec101b5302/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/09ad99ca898ddd5faca69308e429aaec101b5302\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/09ad99ca898ddd5faca69308e429aaec101b5302\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/09ad99ca898ddd5faca69308e429aaec101b5302\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/09ad99ca898ddd5faca69308e429aaec101b5302/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/09ad99ca898ddd5faca69308e429aaec101b5302/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:47:03+00:00\", \"message\": \"Create Post “1970-01-01-first-title”\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/09ad99ca898ddd5faca69308e429aaec101b5302/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0491580963135", - "Connection": "Keep-Alive", - "X-Request-Count": "3585", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "154" - }, - "response": "---\ntemplate: post\ntitle: first title\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.079029083252", - "Connection": "Keep-Alive", - "X-Request-Count": "2354", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:09ad99ca898d%0Db782b50eefc7?from_pullrequest_id=5\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:09ad99ca898d%0Db782b50eefc7?from_pullrequest_id=5\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 5, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:47:04.670916+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \" Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"09ad99ca898d\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/09ad99ca898d\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/09ad99ca898d\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:47:05.492509+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/5/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0917220115662", - "Connection": "Keep-Alive", - "X-Request-Count": "2012", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments/144752560\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5/_/diff#comment-144752560\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 5, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:47:05.489624+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:47:05.492509+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752560}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/5/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0535008907318", - "Connection": "Keep-Alive", - "X-Request-Count": "2534", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-second-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0523500442505", - "Connection": "Keep-Alive", - "X-Request-Count": "3009", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.050449848175", - "Connection": "Keep-Alive", - "X-Request-Count": "3639", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/1970-01-01-second-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0324251651764", - "Connection": "Keep-Alive", - "X-Request-Count": "4759", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "106" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: content/posts/1970-01-01-second-title.md\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0491781234741", - "Connection": "Keep-Alive", - "X-Request-Count": "3834", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0815279483795", - "Connection": "Keep-Alive", - "X-Request-Count": "1517", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:09ad99ca898d%0Db782b50eefc7?from_pullrequest_id=5\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:09ad99ca898d%0Db782b50eefc7?from_pullrequest_id=5\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 5, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:47:04.670916+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \" Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"09ad99ca898d\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/09ad99ca898d\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/09ad99ca898d\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:47:05.492509+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "body": "------WebKitFormBoundarymr8Kyo7PuCkDcvf0\r\nContent-Disposition: form-data; name=\"content/posts/1970-01-01-second-title.md\"; filename=\"1970-01-01-second-title.md\"\r\nContent-Type: application/octet-stream\r\n\r\n---\ntemplate: post\ntitle: second title\ndate: 1970-01-01T00:00:00.300Z\ndescription: second description\ncategory: second category\ntags:\n - tag2\n---\nsecond body\r\n------WebKitFormBoundarymr8Kyo7PuCkDcvf0\r\nContent-Disposition: form-data; name=\"message\"\r\n\r\nCreate Post â1970-01-01-second-titleâ\r\n------WebKitFormBoundarymr8Kyo7PuCkDcvf0\r\nContent-Disposition: form-data; name=\"branch\"\r\n\r\ncms/posts/1970-01-01-second-title\r\n------WebKitFormBoundarymr8Kyo7PuCkDcvf0\r\nContent-Disposition: form-data; name=\"parents\"\r\n\r\nb782b50eefc7d6f6482ac989eb5c9142d5abfa37\r\n------WebKitFormBoundarymr8Kyo7PuCkDcvf0--\r\n", - "method": "POST", - "url": "/2.0/repositories/owner/repo/src", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "text/html; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f2fec308fe908f9194cd60e9efe4396cd008cc4e", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.477674007416", - "Connection": "Keep-Alive", - "X-Request-Count": "4811", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "0" - }, - "response": null, - "status": 201 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/5/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0990529060364", - "Connection": "Keep-Alive", - "X-Request-Count": "4601", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments/144752560\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5/_/diff#comment-144752560\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 5, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:47:05.489624+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:47:05.492509+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752560}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "body": "{\"title\":\"Create Post “1970-01-01-second-title”\",\"source\":{\"branch\":{\"name\":\"cms/posts/1970-01-01-second-title\"}},\"destination\":{\"branch\":{\"name\":\"master\"}},\"description\":\"Automatically generated by Decap CMS\",\"close_source_branch\":true}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.265631198883", - "Connection": "Keep-Alive", - "X-Request-Count": "1902", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "5265" - }, - "response": "{\"rendered\": {\"description\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"title\": {\"raw\": \"Create Post “1970-01-01-second-title”\", \"markup\": \"markdown\", \"html\": \"Create Post “1970-01-01-second-title”
\", \"type\": \"rendered\"}}, \"type\": \"pullrequest\", \"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:f2fec308fe90%0Db782b50eefc7?from_pullrequest_id=6\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/6\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:f2fec308fe90%0Db782b50eefc7?from_pullrequest_id=6\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/statuses\"}}, \"title\": \"Create Post “1970-01-01-second-title”\", \"close_source_branch\": true, \"reviewers\": [], \"id\": 6, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:47:19.254362+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"f2fec308fe90\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f2fec308fe90\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/f2fec308fe90\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-second-title\"}}, \"comment_count\": 0, \"state\": \"OPEN\", \"task_count\": 0, \"participants\": [], \"reason\": \"\", \"updated_on\": \"2020-04-12T09:47:19.288516+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}", - "status": 201 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/5/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0410099029541", - "Connection": "Keep-Alive", - "X-Request-Count": "3527", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "body": "{\"content\":{\"raw\":\"decap-cms/draft\"}}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/6/comments", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/comments/144752565", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0897240638733", - "Connection": "Keep-Alive", - "X-Request-Count": "2667", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1552" - }, - "response": "{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/comments/144752565\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/6/_/diff#comment-144752565\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 6, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/6\"}}, \"title\": \"Create Post “1970-01-01-second-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:47:20.040156+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:47:20.042732+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752565}", - "status": 201 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-second-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0897901058197", - "Connection": "Keep-Alive", - "X-Request-Count": "3509", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4935" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:f2fec308fe90%0Db782b50eefc7?from_pullrequest_id=6\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/6\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:f2fec308fe90%0Db782b50eefc7?from_pullrequest_id=6\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/statuses\"}}, \"title\": \"Create Post “1970-01-01-second-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 6, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:47:19.254362+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"f2fec308fe90\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f2fec308fe90\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/f2fec308fe90\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-second-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:47:20.042732+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/6/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0714290142059", - "Connection": "Keep-Alive", - "X-Request-Count": "2294", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1604" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/comments/144752565\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/6/_/diff#comment-144752565\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 6, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/6\"}}, \"title\": \"Create Post “1970-01-01-second-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:47:20.040156+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:47:20.042732+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752565}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/diff/cms/posts/1970-01-01-second-title..master?binary=false", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "must-revalidate, max-age=0", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.119289159775", - "Connection": "Keep-Alive", - "X-Request-Count": "4124", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "416" - }, - "response": "diff --git a/content/posts/1970-01-01-second-title.md b/content/posts/1970-01-01-second-title.md\nnew file mode 100644\nindex 0000000..b1a5066\n--- /dev/null\n+++ b/content/posts/1970-01-01-second-title.md\n@@ -0,0 +1,10 @@\n+---\n+template: post\n+title: second title\n+date: 1970-01-01T00:00:00.300Z\n+description: second description\n+category: second category\n+tags:\n+ - tag2\n+---\n+second body\n\\ No newline at end of file\n", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/6/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.107553958893", - "Connection": "Keep-Alive", - "X-Request-Count": "2422", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1604" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/comments/144752565\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/6/_/diff#comment-144752565\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 6, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/6\"}}, \"title\": \"Create Post “1970-01-01-second-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:47:20.040156+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:47:20.042732+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752565}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-second-title", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0538809299469", - "Connection": "Keep-Alive", - "X-Request-Count": "1467", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3731" - }, - "response": "{\"name\": \"cms/posts/1970-01-01-second-title\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/cms/posts/1970-01-01-second-title\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-second-title\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/cms/posts/1970-01-01-second-title\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"f2fec308fe908f9194cd60e9efe4396cd008cc4e\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f2fec308fe908f9194cd60e9efe4396cd008cc4e\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f2fec308fe908f9194cd60e9efe4396cd008cc4e/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/f2fec308fe908f9194cd60e9efe4396cd008cc4e\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/f2fec308fe908f9194cd60e9efe4396cd008cc4e\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/f2fec308fe908f9194cd60e9efe4396cd008cc4e\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f2fec308fe908f9194cd60e9efe4396cd008cc4e/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f2fec308fe908f9194cd60e9efe4396cd008cc4e/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:47:18+00:00\", \"message\": \"Create Post “1970-01-01-second-title”\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/f2fec308fe908f9194cd60e9efe4396cd008cc4e/content/posts/1970-01-01-second-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0611569881439", - "Connection": "Keep-Alive", - "X-Request-Count": "258", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "158" - }, - "response": "---\ntemplate: post\ntitle: second title\ndate: 1970-01-01T00:00:00.300Z\ndescription: second description\ncategory: second category\ntags:\n - tag2\n---\nsecond body", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0865519046783", - "Connection": "Keep-Alive", - "X-Request-Count": "2314", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:09ad99ca898d%0Db782b50eefc7?from_pullrequest_id=5\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:09ad99ca898d%0Db782b50eefc7?from_pullrequest_id=5\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 5, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:47:04.670916+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \" Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"09ad99ca898d\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/09ad99ca898d\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/09ad99ca898d\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:47:05.492509+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-second-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0873680114746", - "Connection": "Keep-Alive", - "X-Request-Count": "3347", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4935" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:f2fec308fe90%0Db782b50eefc7?from_pullrequest_id=6\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/6\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:f2fec308fe90%0Db782b50eefc7?from_pullrequest_id=6\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/statuses\"}}, \"title\": \"Create Post “1970-01-01-second-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 6, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:47:19.254362+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"f2fec308fe90\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f2fec308fe90\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/f2fec308fe90\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-second-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:47:20.042732+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/5/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0875558853149", - "Connection": "Keep-Alive", - "X-Request-Count": "2468", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments/144752560\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5/_/diff#comment-144752560\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 5, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:47:05.489624+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:47:05.492509+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752560}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/6/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.08700299263", - "Connection": "Keep-Alive", - "X-Request-Count": "1711", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1604" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/comments/144752565\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/6/_/diff#comment-144752565\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 6, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/6\"}}, \"title\": \"Create Post “1970-01-01-second-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:47:20.040156+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:47:20.042732+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752565}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/5/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0358929634094", - "Connection": "Keep-Alive", - "X-Request-Count": "2887", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/6/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0521750450134", - "Connection": "Keep-Alive", - "X-Request-Count": "3108", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-third-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0520758628845", - "Connection": "Keep-Alive", - "X-Request-Count": "2556", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0465250015259", - "Connection": "Keep-Alive", - "X-Request-Count": "1414", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/1970-01-01-third-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0451970100403", - "Connection": "Keep-Alive", - "X-Request-Count": "3724", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "105" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: content/posts/1970-01-01-third-title.md\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0548269748688", - "Connection": "Keep-Alive", - "X-Request-Count": "3762", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-second-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0863380432129", - "Connection": "Keep-Alive", - "X-Request-Count": "2193", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4935" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:f2fec308fe90%0Db782b50eefc7?from_pullrequest_id=6\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/6\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:f2fec308fe90%0Db782b50eefc7?from_pullrequest_id=6\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/statuses\"}}, \"title\": \"Create Post “1970-01-01-second-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 6, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:47:19.254362+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \" Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"f2fec308fe90\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f2fec308fe90\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/f2fec308fe90\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-second-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:47:20.042732+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "body": "------WebKitFormBoundaryf1pqBal8r4GoLpG8\r\nContent-Disposition: form-data; name=\"content/posts/1970-01-01-third-title.md\"; filename=\"1970-01-01-third-title.md\"\r\nContent-Type: application/octet-stream\r\n\r\n---\ntemplate: post\ntitle: third title\ndate: 1970-01-01T00:00:00.600Z\ndescription: third description\ncategory: third category\ntags:\n - tag3\n---\nthird body\r\n------WebKitFormBoundaryf1pqBal8r4GoLpG8\r\nContent-Disposition: form-data; name=\"message\"\r\n\r\nCreate Post â1970-01-01-third-titleâ\r\n------WebKitFormBoundaryf1pqBal8r4GoLpG8\r\nContent-Disposition: form-data; name=\"branch\"\r\n\r\ncms/posts/1970-01-01-third-title\r\n------WebKitFormBoundaryf1pqBal8r4GoLpG8\r\nContent-Disposition: form-data; name=\"parents\"\r\n\r\nb782b50eefc7d6f6482ac989eb5c9142d5abfa37\r\n------WebKitFormBoundaryf1pqBal8r4GoLpG8--\r\n", - "method": "POST", - "url": "/2.0/repositories/owner/repo/src", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "text/html; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/commit/4c3e6074b4468e59b8b97133bf1fa4be747a025e", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.451163053513", - "Connection": "Keep-Alive", - "X-Request-Count": "2025", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "0" - }, - "response": null, - "status": 201 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/6/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0964319705963", - "Connection": "Keep-Alive", - "X-Request-Count": "1779", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1604" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/comments/144752565\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/6/_/diff#comment-144752565\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 6, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/6\"}}, \"title\": \"Create Post “1970-01-01-second-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:47:20.040156+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:47:20.042732+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752565}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "body": "{\"title\":\"Create Post “1970-01-01-third-title”\",\"source\":{\"branch\":{\"name\":\"cms/posts/1970-01-01-third-title\"}},\"destination\":{\"branch\":{\"name\":\"master\"}},\"description\":\"Automatically generated by Decap CMS\",\"close_source_branch\":true}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.23893404007", - "Connection": "Keep-Alive", - "X-Request-Count": "2839", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "5261" - }, - "response": "{\"rendered\": {\"description\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"title\": {\"raw\": \"Create Post “1970-01-01-third-title”\", \"markup\": \"markdown\", \"html\": \"Create Post “1970-01-01-third-title”
\", \"type\": \"rendered\"}}, \"type\": \"pullrequest\", \"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:4c3e6074b446%0Db782b50eefc7?from_pullrequest_id=7\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/7\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:4c3e6074b446%0Db782b50eefc7?from_pullrequest_id=7\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/statuses\"}}, \"title\": \"Create Post “1970-01-01-third-title”\", \"close_source_branch\": true, \"reviewers\": [], \"id\": 7, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:47:33.629104+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"4c3e6074b446\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/4c3e6074b446\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/4c3e6074b446\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-third-title\"}}, \"comment_count\": 0, \"state\": \"OPEN\", \"task_count\": 0, \"participants\": [], \"reason\": \"\", \"updated_on\": \"2020-04-12T09:47:33.655574+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}", - "status": 201 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/6/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0574941635132", - "Connection": "Keep-Alive", - "X-Request-Count": "4850", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "body": "{\"content\":{\"raw\":\"decap-cms/draft\"}}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/7/comments", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/comments/144752572", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.107774019241", - "Connection": "Keep-Alive", - "X-Request-Count": "243", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1551" - }, - "response": "{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/comments/144752572\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/7/_/diff#comment-144752572\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 7, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/7\"}}, \"title\": \"Create Post “1970-01-01-third-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:47:34.427322+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:47:34.431940+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752572}", - "status": 201 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-third-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0960218906403", - "Connection": "Keep-Alive", - "X-Request-Count": "4883", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:4c3e6074b446%0Db782b50eefc7?from_pullrequest_id=7\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/7\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:4c3e6074b446%0Db782b50eefc7?from_pullrequest_id=7\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/statuses\"}}, \"title\": \"Create Post “1970-01-01-third-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 7, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:47:33.629104+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"4c3e6074b446\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/4c3e6074b446\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/4c3e6074b446\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-third-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:47:34.431940+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/7/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0849289894104", - "Connection": "Keep-Alive", - "X-Request-Count": "3322", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/comments/144752572\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/7/_/diff#comment-144752572\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 7, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/7\"}}, \"title\": \"Create Post “1970-01-01-third-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:47:34.427322+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:47:34.431940+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752572}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/diff/cms/posts/1970-01-01-third-title..master?binary=false", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "must-revalidate, max-age=0", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.107002019882", - "Connection": "Keep-Alive", - "X-Request-Count": "1501", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "409" - }, - "response": "diff --git a/content/posts/1970-01-01-third-title.md b/content/posts/1970-01-01-third-title.md\nnew file mode 100644\nindex 0000000..b55f710\n--- /dev/null\n+++ b/content/posts/1970-01-01-third-title.md\n@@ -0,0 +1,10 @@\n+---\n+template: post\n+title: third title\n+date: 1970-01-01T00:00:00.600Z\n+description: third description\n+category: third category\n+tags:\n+ - tag3\n+---\n+third body\n\\ No newline at end of file\n", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/7/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0874218940735", - "Connection": "Keep-Alive", - "X-Request-Count": "3068", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/comments/144752572\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/7/_/diff#comment-144752572\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 7, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/7\"}}, \"title\": \"Create Post “1970-01-01-third-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:47:34.427322+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:47:34.431940+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752572}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-third-title", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0555760860443", - "Connection": "Keep-Alive", - "X-Request-Count": "482", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3726" - }, - "response": "{\"name\": \"cms/posts/1970-01-01-third-title\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/cms/posts/1970-01-01-third-title\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-third-title\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/cms/posts/1970-01-01-third-title\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"4c3e6074b4468e59b8b97133bf1fa4be747a025e\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/4c3e6074b4468e59b8b97133bf1fa4be747a025e\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/4c3e6074b4468e59b8b97133bf1fa4be747a025e/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/4c3e6074b4468e59b8b97133bf1fa4be747a025e\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/4c3e6074b4468e59b8b97133bf1fa4be747a025e\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/4c3e6074b4468e59b8b97133bf1fa4be747a025e\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/4c3e6074b4468e59b8b97133bf1fa4be747a025e/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/4c3e6074b4468e59b8b97133bf1fa4be747a025e/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:47:32+00:00\", \"message\": \"Create Post “1970-01-01-third-title”\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/4c3e6074b4468e59b8b97133bf1fa4be747a025e/content/posts/1970-01-01-third-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0502660274506", - "Connection": "Keep-Alive", - "X-Request-Count": "2974", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "154" - }, - "response": "---\ntemplate: post\ntitle: third title\ndate: 1970-01-01T00:00:00.600Z\ndescription: third description\ncategory: third category\ntags:\n - tag3\n---\nthird body", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-third-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0878019332886", - "Connection": "Keep-Alive", - "X-Request-Count": "4138", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:4c3e6074b446%0Db782b50eefc7?from_pullrequest_id=7\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/7\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:4c3e6074b446%0Db782b50eefc7?from_pullrequest_id=7\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/statuses\"}}, \"title\": \"Create Post “1970-01-01-third-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 7, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:47:33.629104+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \" Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"4c3e6074b446\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/4c3e6074b446\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/4c3e6074b446\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-third-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:47:34.431940+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-second-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0805530548096", - "Connection": "Keep-Alive", - "X-Request-Count": "3371", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4935" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:f2fec308fe90%0Db782b50eefc7?from_pullrequest_id=6\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/6\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:f2fec308fe90%0Db782b50eefc7?from_pullrequest_id=6\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/statuses\"}}, \"title\": \"Create Post “1970-01-01-second-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 6, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:47:19.254362+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"f2fec308fe90\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f2fec308fe90\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/f2fec308fe90\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-second-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:47:20.042732+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-third-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0982480049133", - "Connection": "Keep-Alive", - "X-Request-Count": "4021", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:4c3e6074b446%0Db782b50eefc7?from_pullrequest_id=7\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/7\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:4c3e6074b446%0Db782b50eefc7?from_pullrequest_id=7\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/statuses\"}}, \"title\": \"Create Post “1970-01-01-third-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 7, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:47:33.629104+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"4c3e6074b446\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/4c3e6074b446\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/4c3e6074b446\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-third-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:47:34.431940+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/6/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0928490161896", - "Connection": "Keep-Alive", - "X-Request-Count": "383", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1604" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/comments/144752565\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/6/_/diff#comment-144752565\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 6, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/6\"}}, \"title\": \"Create Post “1970-01-01-second-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:47:20.040156+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:47:20.042732+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752565}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/7/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0944640636444", - "Connection": "Keep-Alive", - "X-Request-Count": "1486", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/comments/144752572\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/7/_/diff#comment-144752572\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 7, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/7\"}}, \"title\": \"Create Post “1970-01-01-third-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:47:34.427322+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:47:34.431940+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752572}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/6/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0324440002441", - "Connection": "Keep-Alive", - "X-Request-Count": "1418", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/7/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.072417974472", - "Connection": "Keep-Alive", - "X-Request-Count": "4489", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/comments/144752572\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/7/_/diff#comment-144752572\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 7, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/7\"}}, \"title\": \"Create Post “1970-01-01-third-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:47:34.427322+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:47:34.431940+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752572}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/7/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0348289012909", - "Connection": "Keep-Alive", - "X-Request-Count": "3665", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "body": "{\"content\":{\"raw\":\"decap-cms/pending_publish\"}}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/7/comments", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/comments/144752577", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.109380960464", - "Connection": "Keep-Alive", - "X-Request-Count": "3650", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1571" - }, - "response": "{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/comments/144752577\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/7/_/diff#comment-144752577\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 7, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/7\"}}, \"title\": \"Create Post “1970-01-01-third-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_publish\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_publish
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:47:41.979072+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:47:41.981822+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752577}", - "status": 201 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-third-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0807540416718", - "Connection": "Keep-Alive", - "X-Request-Count": "4502", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:4c3e6074b446%0Db782b50eefc7?from_pullrequest_id=7\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/7\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:4c3e6074b446%0Db782b50eefc7?from_pullrequest_id=7\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/statuses\"}}, \"title\": \"Create Post “1970-01-01-third-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 7, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:47:33.629104+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"4c3e6074b446\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/4c3e6074b446\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/4c3e6074b446\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-third-title\"}}, \"comment_count\": 2, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:47:41.981822+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-second-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0853779315948", - "Connection": "Keep-Alive", - "X-Request-Count": "3036", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4935" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:f2fec308fe90%0Db782b50eefc7?from_pullrequest_id=6\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/6\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:f2fec308fe90%0Db782b50eefc7?from_pullrequest_id=6\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/statuses\"}}, \"title\": \"Create Post “1970-01-01-second-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 6, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:47:19.254362+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"f2fec308fe90\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f2fec308fe90\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/f2fec308fe90\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-second-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:47:20.042732+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/7/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0841360092163", - "Connection": "Keep-Alive", - "X-Request-Count": "3499", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3176" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/comments/144752572\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/7/_/diff#comment-144752572\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 7, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/7\"}}, \"title\": \"Create Post “1970-01-01-third-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:47:34.427322+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:47:34.431940+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752572}, {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/comments/144752577\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/7/_/diff#comment-144752577\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 7, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/7\"}}, \"title\": \"Create Post “1970-01-01-third-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_publish\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_publish
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:47:41.979072+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:47:41.981822+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752577}], \"page\": 1, \"size\": 2}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/6/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.075670003891", - "Connection": "Keep-Alive", - "X-Request-Count": "1401", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1604" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/comments/144752565\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/6/_/diff#comment-144752565\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 6, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/6\"}}, \"title\": \"Create Post “1970-01-01-second-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:47:20.040156+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:47:20.042732+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752565}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/7/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0482308864594", - "Connection": "Keep-Alive", - "X-Request-Count": "1799", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "body": "{\"content\":{\"raw\":\"decap-cms/pending_publish\"}}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/6/comments", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/comments/144752579", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.079540014267", - "Connection": "Keep-Alive", - "X-Request-Count": "3301", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1572" - }, - "response": "{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/comments/144752579\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/6/_/diff#comment-144752579\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 6, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/6\"}}, \"title\": \"Create Post “1970-01-01-second-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_publish\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_publish
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:47:49.165550+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:47:49.167833+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752579}", - "status": 201 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-third-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0755090713501", - "Connection": "Keep-Alive", - "X-Request-Count": "1443", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:4c3e6074b446%0Db782b50eefc7?from_pullrequest_id=7\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/7\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:4c3e6074b446%0Db782b50eefc7?from_pullrequest_id=7\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/statuses\"}}, \"title\": \"Create Post “1970-01-01-third-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 7, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:47:33.629104+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"4c3e6074b446\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/4c3e6074b446\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/4c3e6074b446\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-third-title\"}}, \"comment_count\": 2, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:47:41.981822+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0929720401764", - "Connection": "Keep-Alive", - "X-Request-Count": "3553", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:09ad99ca898d%0Db782b50eefc7?from_pullrequest_id=5\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:09ad99ca898d%0Db782b50eefc7?from_pullrequest_id=5\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 5, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:47:04.670916+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"09ad99ca898d\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/09ad99ca898d\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/09ad99ca898d\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:47:05.492509+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/7/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0992829799652", - "Connection": "Keep-Alive", - "X-Request-Count": "1520", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3176" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/comments/144752572\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/7/_/diff#comment-144752572\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 7, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/7\"}}, \"title\": \"Create Post “1970-01-01-third-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:47:34.427322+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:47:34.431940+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752572}, {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/comments/144752577\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/7/_/diff#comment-144752577\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 7, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/7\"}}, \"title\": \"Create Post “1970-01-01-third-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_publish\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_publish
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:47:41.979072+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:47:41.981822+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752577}], \"page\": 1, \"size\": 2}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/5/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0717480182648", - "Connection": "Keep-Alive", - "X-Request-Count": "2184", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments/144752560\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5/_/diff#comment-144752560\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 5, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:47:05.489624+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:47:05.492509+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752560}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/7/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0412740707397", - "Connection": "Keep-Alive", - "X-Request-Count": "2295", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "body": "{\"content\":{\"raw\":\"decap-cms/pending_publish\"}}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/5/comments", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments/144752581", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0875260829926", - "Connection": "Keep-Alive", - "X-Request-Count": "2801", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1571" - }, - "response": "{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments/144752581\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5/_/diff#comment-144752581\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 5, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_publish\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_publish
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:47:56.423079+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:47:56.425996+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752581}", - "status": 201 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-third-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.103232860565", - "Connection": "Keep-Alive", - "X-Request-Count": "2545", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:4c3e6074b446%0Db782b50eefc7?from_pullrequest_id=7\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/7\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:4c3e6074b446%0Db782b50eefc7?from_pullrequest_id=7\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/statuses\"}}, \"title\": \"Create Post “1970-01-01-third-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 7, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:47:33.629104+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"4c3e6074b446\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/4c3e6074b446\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/4c3e6074b446\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-third-title\"}}, \"comment_count\": 2, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:47:41.981822+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/7/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.112990140915", - "Connection": "Keep-Alive", - "X-Request-Count": "3772", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3176" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/comments/144752572\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/7/_/diff#comment-144752572\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 7, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/7\"}}, \"title\": \"Create Post “1970-01-01-third-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:47:34.427322+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:47:34.431940+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752572}, {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/comments/144752577\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/7/_/diff#comment-144752577\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 7, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/7\"}}, \"title\": \"Create Post “1970-01-01-third-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_publish\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_publish
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:47:41.979072+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:47:41.981822+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752577}], \"page\": 1, \"size\": 2}", - "status": 200 - }, - { - "body": "{\"message\":\"Automatically generated. Merged on Decap CMS.\",\"close_source_branch\":true,\"merge_strategy\":\"merge_commit\"}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/7/merge", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "1.31446909904", - "Connection": "Keep-Alive", - "X-Request-Count": "4491", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "7910" - }, - "response": "{\"rendered\": {\"description\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"title\": {\"raw\": \"Create Post “1970-01-01-third-title”\", \"markup\": \"markdown\", \"html\": \"Create Post “1970-01-01-third-title”
\", \"type\": \"rendered\"}}, \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:200d1958b7d1%0Db782b50eefc7?from_pullrequest_id=7\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/7\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:200d1958b7d1%0Db782b50eefc7?from_pullrequest_id=7\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/7/statuses\"}}, \"close_source_branch\": true, \"reviewers\": [], \"created_on\": \"2020-04-12T09:47:33.629104+00:00\", \"id\": 7, \"closed_on\": \"2020-04-12T09:48:04.871341+00:00\", \"title\": \"Create Post “1970-01-01-third-title”\", \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"comment_count\": 2, \"source\": {\"commit\": {\"hash\": \"4c3e6074b446\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/4c3e6074b446\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/4c3e6074b446\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-third-title\"}}, \"state\": \"MERGED\", \"type\": \"pullrequest\", \"description\": \"Automatically generated by Decap CMS\", \"reason\": \"\", \"task_count\": 0, \"merge_commit\": {\"hash\": \"200d1958b7d12b2170871ffb93bc98aca6dfe683\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/200d1958b7d12b2170871ffb93bc98aca6dfe683\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/200d1958b7d12b2170871ffb93bc98aca6dfe683\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"summary\": {\"raw\": \"Automatically generated. Merged on Decap CMS.\\n\", \"markup\": \"markdown\", \"html\": \" Automatically generated. Merged on Decap CMS.
\", \"type\": \"rendered\"}, \"date\": \"2020-04-12T09:48:03+00:00\", \"message\": \"Automatically generated. Merged on Decap CMS.\\n\", \"type\": \"commit\"}, \"closed_by\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"participants\": [{\"role\": \"PARTICIPANT\", \"participated_on\": \"2020-04-12T09:47:41.981822+00:00\", \"type\": \"participant\", \"approved\": false, \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}], \"updated_on\": \"2020-04-12T09:48:04.871356+00:00\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0708429813385", - "Connection": "Keep-Alive", - "X-Request-Count": "4162", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3867" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"200d1958b7d12b2170871ffb93bc98aca6dfe683\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/200d1958b7d12b2170871ffb93bc98aca6dfe683\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/200d1958b7d12b2170871ffb93bc98aca6dfe683/comments\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/200d1958b7d12b2170871ffb93bc98aca6dfe683\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/200d1958b7d12b2170871ffb93bc98aca6dfe683\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/200d1958b7d12b2170871ffb93bc98aca6dfe683/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/200d1958b7d12b2170871ffb93bc98aca6dfe683/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}, {\"hash\": \"4c3e6074b4468e59b8b97133bf1fa4be747a025e\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/4c3e6074b4468e59b8b97133bf1fa4be747a025e\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/4c3e6074b4468e59b8b97133bf1fa4be747a025e\"}}}], \"date\": \"2020-04-12T09:48:03+00:00\", \"message\": \"Automatically generated. Merged on Decap CMS.\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/200d1958b7d12b2170871ffb93bc98aca6dfe683/static/media?max_depth=1&pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0380589962006", - "Connection": "Keep-Alive", - "X-Request-Count": "3163", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "78" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: static/media\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0712170600891", - "Connection": "Keep-Alive", - "X-Request-Count": "2352", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3867" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"200d1958b7d12b2170871ffb93bc98aca6dfe683\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/200d1958b7d12b2170871ffb93bc98aca6dfe683\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/200d1958b7d12b2170871ffb93bc98aca6dfe683/comments\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/200d1958b7d12b2170871ffb93bc98aca6dfe683\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/200d1958b7d12b2170871ffb93bc98aca6dfe683\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/200d1958b7d12b2170871ffb93bc98aca6dfe683/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/200d1958b7d12b2170871ffb93bc98aca6dfe683/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}, {\"hash\": \"4c3e6074b4468e59b8b97133bf1fa4be747a025e\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/4c3e6074b4468e59b8b97133bf1fa4be747a025e\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/4c3e6074b4468e59b8b97133bf1fa4be747a025e\"}}}], \"date\": \"2020-04-12T09:48:03+00:00\", \"message\": \"Automatically generated. Merged on Decap CMS.\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/200d1958b7d12b2170871ffb93bc98aca6dfe683/content/posts/1970-01-01-third-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0583190917969", - "Connection": "Keep-Alive", - "X-Request-Count": "1362", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "154" - }, - "response": "---\ntemplate: post\ntitle: third title\ndate: 1970-01-01T00:00:00.600Z\ndescription: third description\ncategory: third category\ntags:\n - tag3\n---\nthird body", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-second-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0846519470215", - "Connection": "Keep-Alive", - "X-Request-Count": "2600", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4935" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:f2fec308fe90%0D200d1958b7d1?from_pullrequest_id=6\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/6\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:f2fec308fe90%0D200d1958b7d1?from_pullrequest_id=6\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/statuses\"}}, \"title\": \"Create Post “1970-01-01-second-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 6, \"destination\": {\"commit\": {\"hash\": \"200d1958b7d1\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/200d1958b7d1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/200d1958b7d1\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:47:19.254362+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \" Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"f2fec308fe90\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f2fec308fe90\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/f2fec308fe90\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-second-title\"}}, \"comment_count\": 2, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:47:49.167833+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/6/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.120667934418", - "Connection": "Keep-Alive", - "X-Request-Count": "3766", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3178" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/comments/144752565\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/6/_/diff#comment-144752565\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 6, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/6\"}}, \"title\": \"Create Post “1970-01-01-second-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:47:20.040156+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:47:20.042732+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752565}, {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/comments/144752579\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/6/_/diff#comment-144752579\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 6, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/6\"}}, \"title\": \"Create Post “1970-01-01-second-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_publish\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_publish
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:47:49.165550+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:47:49.167833+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752579}], \"page\": 1, \"size\": 2}", - "status": 200 - }, - { - "body": "{\"message\":\"Automatically generated. Merged on Decap CMS.\",\"close_source_branch\":true,\"merge_strategy\":\"merge_commit\"}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/6/merge", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "1.07422804832", - "Connection": "Keep-Alive", - "X-Request-Count": "3790", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "7914" - }, - "response": "{\"rendered\": {\"description\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"title\": {\"raw\": \"Create Post “1970-01-01-second-title”\", \"markup\": \"markdown\", \"html\": \"Create Post “1970-01-01-second-title”
\", \"type\": \"rendered\"}}, \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:a252c7197929%0D200d1958b7d1?from_pullrequest_id=6\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/6\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:a252c7197929%0D200d1958b7d1?from_pullrequest_id=6\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/6/statuses\"}}, \"close_source_branch\": true, \"reviewers\": [], \"created_on\": \"2020-04-12T09:47:19.254362+00:00\", \"id\": 6, \"closed_on\": \"2020-04-12T09:48:13.092203+00:00\", \"title\": \"Create Post “1970-01-01-second-title”\", \"destination\": {\"commit\": {\"hash\": \"200d1958b7d1\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/200d1958b7d1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/200d1958b7d1\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"comment_count\": 2, \"source\": {\"commit\": {\"hash\": \"f2fec308fe90\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f2fec308fe90\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/f2fec308fe90\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-second-title\"}}, \"state\": \"MERGED\", \"type\": \"pullrequest\", \"description\": \"Automatically generated by Decap CMS\", \"reason\": \"\", \"task_count\": 0, \"merge_commit\": {\"hash\": \"a252c71979293542b5d2c40cdf01a61eb19f38d2\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/a252c71979293542b5d2c40cdf01a61eb19f38d2\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/a252c71979293542b5d2c40cdf01a61eb19f38d2\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"summary\": {\"raw\": \"Automatically generated. Merged on Decap CMS.\\n\", \"markup\": \"markdown\", \"html\": \" Automatically generated. Merged on Decap CMS.
\", \"type\": \"rendered\"}, \"date\": \"2020-04-12T09:48:12+00:00\", \"message\": \"Automatically generated. Merged on Decap CMS.\\n\", \"type\": \"commit\"}, \"closed_by\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"participants\": [{\"role\": \"PARTICIPANT\", \"participated_on\": \"2020-04-12T09:47:49.167833+00:00\", \"type\": \"participant\", \"approved\": false, \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}], \"updated_on\": \"2020-04-12T09:48:13.092214+00:00\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0660929679871", - "Connection": "Keep-Alive", - "X-Request-Count": "2431", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3867" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"a252c71979293542b5d2c40cdf01a61eb19f38d2\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/a252c71979293542b5d2c40cdf01a61eb19f38d2\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/a252c71979293542b5d2c40cdf01a61eb19f38d2/comments\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/a252c71979293542b5d2c40cdf01a61eb19f38d2\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/a252c71979293542b5d2c40cdf01a61eb19f38d2\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/a252c71979293542b5d2c40cdf01a61eb19f38d2/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/a252c71979293542b5d2c40cdf01a61eb19f38d2/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"200d1958b7d12b2170871ffb93bc98aca6dfe683\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/200d1958b7d12b2170871ffb93bc98aca6dfe683\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/200d1958b7d12b2170871ffb93bc98aca6dfe683\"}}}, {\"hash\": \"f2fec308fe908f9194cd60e9efe4396cd008cc4e\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f2fec308fe908f9194cd60e9efe4396cd008cc4e\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/f2fec308fe908f9194cd60e9efe4396cd008cc4e\"}}}], \"date\": \"2020-04-12T09:48:12+00:00\", \"message\": \"Automatically generated. Merged on Decap CMS.\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/a252c71979293542b5d2c40cdf01a61eb19f38d2/static/media?max_depth=1&pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0458247661591", - "Connection": "Keep-Alive", - "X-Request-Count": "3604", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "78" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: static/media\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0555140972137", - "Connection": "Keep-Alive", - "X-Request-Count": "4866", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3867" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"a252c71979293542b5d2c40cdf01a61eb19f38d2\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/a252c71979293542b5d2c40cdf01a61eb19f38d2\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/a252c71979293542b5d2c40cdf01a61eb19f38d2/comments\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/a252c71979293542b5d2c40cdf01a61eb19f38d2\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/a252c71979293542b5d2c40cdf01a61eb19f38d2\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/a252c71979293542b5d2c40cdf01a61eb19f38d2/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/a252c71979293542b5d2c40cdf01a61eb19f38d2/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"200d1958b7d12b2170871ffb93bc98aca6dfe683\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/200d1958b7d12b2170871ffb93bc98aca6dfe683\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/200d1958b7d12b2170871ffb93bc98aca6dfe683\"}}}, {\"hash\": \"f2fec308fe908f9194cd60e9efe4396cd008cc4e\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f2fec308fe908f9194cd60e9efe4396cd008cc4e\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/f2fec308fe908f9194cd60e9efe4396cd008cc4e\"}}}], \"date\": \"2020-04-12T09:48:12+00:00\", \"message\": \"Automatically generated. Merged on Decap CMS.\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/a252c71979293542b5d2c40cdf01a61eb19f38d2/content/posts/1970-01-01-second-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0444960594177", - "Connection": "Keep-Alive", - "X-Request-Count": "2418", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "158" - }, - "response": "---\ntemplate: post\ntitle: second title\ndate: 1970-01-01T00:00:00.300Z\ndescription: second description\ncategory: second category\ntags:\n - tag2\n---\nsecond body", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0969531536102", - "Connection": "Keep-Alive", - "X-Request-Count": "3928", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:09ad99ca898d%0Da252c7197929?from_pullrequest_id=5\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:09ad99ca898d%0Da252c7197929?from_pullrequest_id=5\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 5, \"destination\": {\"commit\": {\"hash\": \"a252c7197929\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/a252c7197929\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/a252c7197929\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:47:04.670916+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \" Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"09ad99ca898d\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/09ad99ca898d\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/09ad99ca898d\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 2, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:47:56.425996+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/5/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0955040454865", - "Connection": "Keep-Alive", - "X-Request-Count": "3845", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3176" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments/144752560\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5/_/diff#comment-144752560\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 5, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:47:05.489624+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:47:05.492509+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752560}, {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments/144752581\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5/_/diff#comment-144752581\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 5, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_publish\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_publish
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:47:56.423079+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:47:56.425996+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752581}], \"page\": 1, \"size\": 2}", - "status": 200 - }, - { - "body": "{\"message\":\"Automatically generated. Merged on Decap CMS.\",\"close_source_branch\":true,\"merge_strategy\":\"merge_commit\"}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/5/merge", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "1.15914392471", - "Connection": "Keep-Alive", - "X-Request-Count": "3715", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "7910" - }, - "response": "{\"rendered\": {\"description\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"title\": {\"raw\": \"Create Post “1970-01-01-first-title”\", \"markup\": \"markdown\", \"html\": \"Create Post “1970-01-01-first-title”
\", \"type\": \"rendered\"}}, \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:331e7de52176%0Da252c7197929?from_pullrequest_id=5\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:331e7de52176%0Da252c7197929?from_pullrequest_id=5\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/statuses\"}}, \"close_source_branch\": true, \"reviewers\": [], \"created_on\": \"2020-04-12T09:47:04.670916+00:00\", \"id\": 5, \"closed_on\": \"2020-04-12T09:48:21.501591+00:00\", \"title\": \"Create Post “1970-01-01-first-title”\", \"destination\": {\"commit\": {\"hash\": \"a252c7197929\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/a252c7197929\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/a252c7197929\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"comment_count\": 2, \"source\": {\"commit\": {\"hash\": \"09ad99ca898d\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/09ad99ca898d\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/09ad99ca898d\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"state\": \"MERGED\", \"type\": \"pullrequest\", \"description\": \"Automatically generated by Decap CMS\", \"reason\": \"\", \"task_count\": 0, \"merge_commit\": {\"hash\": \"331e7de52176edee51d4b75a7bbdb1de8b8965fe\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/331e7de52176edee51d4b75a7bbdb1de8b8965fe\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/331e7de52176edee51d4b75a7bbdb1de8b8965fe\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"summary\": {\"raw\": \"Automatically generated. Merged on Decap CMS.\\n\", \"markup\": \"markdown\", \"html\": \" Automatically generated. Merged on Decap CMS.
\", \"type\": \"rendered\"}, \"date\": \"2020-04-12T09:48:20+00:00\", \"message\": \"Automatically generated. Merged on Decap CMS.\\n\", \"type\": \"commit\"}, \"closed_by\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"participants\": [{\"role\": \"PARTICIPANT\", \"participated_on\": \"2020-04-12T09:47:56.425996+00:00\", \"type\": \"participant\", \"approved\": false, \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}], \"updated_on\": \"2020-04-12T09:48:21.501602+00:00\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0652680397034", - "Connection": "Keep-Alive", - "X-Request-Count": "1831", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3867" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"331e7de52176edee51d4b75a7bbdb1de8b8965fe\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/331e7de52176edee51d4b75a7bbdb1de8b8965fe\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/331e7de52176edee51d4b75a7bbdb1de8b8965fe/comments\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/331e7de52176edee51d4b75a7bbdb1de8b8965fe\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/331e7de52176edee51d4b75a7bbdb1de8b8965fe\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/331e7de52176edee51d4b75a7bbdb1de8b8965fe/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/331e7de52176edee51d4b75a7bbdb1de8b8965fe/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"a252c71979293542b5d2c40cdf01a61eb19f38d2\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/a252c71979293542b5d2c40cdf01a61eb19f38d2\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/a252c71979293542b5d2c40cdf01a61eb19f38d2\"}}}, {\"hash\": \"09ad99ca898ddd5faca69308e429aaec101b5302\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/09ad99ca898ddd5faca69308e429aaec101b5302\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/09ad99ca898ddd5faca69308e429aaec101b5302\"}}}], \"date\": \"2020-04-12T09:48:20+00:00\", \"message\": \"Automatically generated. Merged on Decap CMS.\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/331e7de52176edee51d4b75a7bbdb1de8b8965fe/static/media?max_depth=1&pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0512199401855", - "Connection": "Keep-Alive", - "X-Request-Count": "1899", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "78" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: static/media\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0688419342041", - "Connection": "Keep-Alive", - "X-Request-Count": "3810", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3867" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"331e7de52176edee51d4b75a7bbdb1de8b8965fe\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/331e7de52176edee51d4b75a7bbdb1de8b8965fe\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/331e7de52176edee51d4b75a7bbdb1de8b8965fe/comments\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/331e7de52176edee51d4b75a7bbdb1de8b8965fe\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/331e7de52176edee51d4b75a7bbdb1de8b8965fe\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/331e7de52176edee51d4b75a7bbdb1de8b8965fe/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/331e7de52176edee51d4b75a7bbdb1de8b8965fe/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"a252c71979293542b5d2c40cdf01a61eb19f38d2\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/a252c71979293542b5d2c40cdf01a61eb19f38d2\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/a252c71979293542b5d2c40cdf01a61eb19f38d2\"}}}, {\"hash\": \"09ad99ca898ddd5faca69308e429aaec101b5302\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/09ad99ca898ddd5faca69308e429aaec101b5302\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/09ad99ca898ddd5faca69308e429aaec101b5302\"}}}], \"date\": \"2020-04-12T09:48:20+00:00\", \"message\": \"Automatically generated. Merged on Decap CMS.\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/331e7de52176edee51d4b75a7bbdb1de8b8965fe/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0576288700104", - "Connection": "Keep-Alive", - "X-Request-Count": "1756", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "154" - }, - "response": "---\ntemplate: post\ntitle: first title\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body", - "status": 200 - } -] diff --git a/source/admin/cypress/fixtures/BitBucket Backend Editorial Workflow__can change workflow status.json b/source/admin/cypress/fixtures/BitBucket Backend Editorial Workflow__can change workflow status.json deleted file mode 100644 index 4ad0490..0000000 --- a/source/admin/cypress/fixtures/BitBucket Backend Editorial Workflow__can change workflow status.json +++ /dev/null @@ -1,1509 +0,0 @@ -[ - { - "method": "GET", - "url": "/2.0/repositories/owner/repo", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0389180183411", - "Connection": "Keep-Alive", - "X-Request-Count": "2321", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3011" - }, - "response": "{\"scm\": \"git\", \"website\": null, \"has_wiki\": false, \"name\": \"repo\", \"links\": {\"watchers\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/watchers\"}, \"branches\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches\"}, \"tags\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/tags\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits\"}, \"clone\": [{\"href\": \"https://owner@bitbucket.org/owner/repo.git\", \"name\": \"https\"}, {\"href\": \"git@bitbucket.org:owner/repo.git\", \"name\": \"ssh\"}], \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"source\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/src\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}, \"hooks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/hooks\"}, \"forks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/forks\"}, \"downloads\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/downloads\"}, \"pullrequests\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests\"}}, \"fork_policy\": \"allow_forks\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\", \"language\": \"\", \"created_on\": \"2020-04-12T09:43:06.141832+00:00\", \"mainbranch\": {\"type\": \"branch\", \"name\": \"master\"}, \"full_name\": \"owner/repo\", \"has_issues\": false, \"owner\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:45:41.322237+00:00\", \"size\": 4358658, \"type\": \"repository\", \"slug\": \"repo\", \"is_private\": false, \"description\": \"\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/user", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.048269033432", - "X-Accepted-OAuth-Scopes": "account", - "Connection": "Keep-Alive", - "X-Version": "e1ce49ad4aa3", - "X-Request-Count": "4762", - "X-Frame-Options": "SAMEORIGIN", - "content-length": "1041" - }, - "response": "{\"name\":\"owner\",\"display_name\":\"owner\",\"links\":{\"avatar\":{\"href\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\"}},\"nickname\":\"owner\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0677170753479", - "Connection": "Keep-Alive", - "X-Request-Count": "1116", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/static/media?max_depth=1&pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0464050769806", - "Connection": "Keep-Alive", - "X-Request-Count": "709", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "78" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: static/media\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0723369121552", - "Connection": "Keep-Alive", - "X-Request-Count": "4807", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0595247745514", - "Connection": "Keep-Alive", - "X-Request-Count": "3513", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts?max_depth=1&pagelen=20", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0585558414459", - "Connection": "Keep-Alive", - "X-Request-Count": "1848", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "6396" - }, - "response": "{\"pagelen\":20,\"values\":[{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"}},\"path\":\"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":1707},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"}},\"path\":\"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2565},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"}},\"path\":\"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2786},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"}},\"path\":\"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":16071},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"}},\"path\":\"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":7465}],\"page\":1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0392739772797", - "Connection": "Keep-Alive", - "X-Request-Count": "3318", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2565" - }, - "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n \n\t \n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0310549736023", - "Connection": "Keep-Alive", - "X-Request-Count": "4561", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2786" - }, - "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n\n\t\t\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.
\n\t\t\n\t\n\t \n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0443210601807", - "Connection": "Keep-Alive", - "X-Request-Count": "2358", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1707" - }, - "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.100924015045", - "Connection": "Keep-Alive", - "X-Request-Count": "1996", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.111895799637", - "Connection": "Keep-Alive", - "X-Request-Count": "4520", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-02-02---A-Brief-History-of-Typography.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.116019010544", - "Connection": "Keep-Alive", - "X-Request-Count": "4239", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0392670631409", - "Connection": "Keep-Alive", - "X-Request-Count": "1267", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "16071" - }, - "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western worldâs first major printed books, the âFortyâTwoâLineâ Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western worldâs first major printed books, the âFortyâTwoâLineâ Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 â 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n\n\t \n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information â including revolutionary ideas â transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a âsecretâ. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439â1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him âlike a ray of lightâ.\n\n\n\t
Johannes Gutenberg \n\n\t \n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fustâs son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n\n\t
Early wooden printing press as depicted in 1568. \n\n\t \n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454â55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the FustâSchöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the GutenbergâFust shop might have employed as many as 25 craftsmen.\n\n\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of âmovable typeâ.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n\n\t\t\nAll that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to followâyour grace would be able to read it without effort, and indeed without glasses.
\n\t\t\n\t\n\t \n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in âcuneiformâ style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that âthe decisive factor for the birth of typographyâ, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.05424284935", - "Connection": "Keep-Alive", - "X-Request-Count": "4606", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "7465" - }, - "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didnât mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other â the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n\n\n*The 42âLine Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But itâs the third transition that stripped it naked. Typefaces are faceless these days. Theyâre just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the âright oneâ is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\nâ Massimo Vignelli\n\nTypography is not about typefaces. Itâs not about what looks best, itâs about what feels right. What communicates the message best. Typography, in its essence, is about the message. âTypographical design should perform optically what the speaker creates through voice and gesture of his thoughts.â, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because itâs a safe option. Itâs always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still donât spot it in the street.\n\n\n\t\t\nIt is a press, certainly, but a press from which shall flow in inexhaustible streams⦠Through it, god will spread his word.
\n\t\t\n\t\n\t \n\nTypefaces donât look handmade these days. And thatâs all right. They donât have to. Industrialism took that away from them and weâre fine with it. Weâve traded that part of humanity for a process that produces more books that are easier to read. That canât be bad. And it isnât.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> â Eric Gill\n\nWeâve come close to âperfectionâ in the last five centuries. The letters are crisp and without rough edges. We print our compositions with highâprecision printers on a high quality, machine made paper.\n\n\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we donât care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. Thereâs no meaning in our work. Type sizes, leading, margins⦠Itâs all just a few clicks or lines of code. The message isnât important anymore. Thereâs no more âwhyâ behind the âwhatâ.\n\n## Chasing perfection\n\nHuman beings arenât perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2017-18-08---The-Birth-of-Movable-Type.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.111732959747", - "Connection": "Keep-Alive", - "X-Request-Count": "3585", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nKnowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0973370075226", - "Connection": "Keep-Alive", - "X-Request-Count": "511", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0443909168243", - "Connection": "Keep-Alive", - "X-Request-Count": "1558", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name ~ \"cms/\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.054986000061", - "Connection": "Keep-Alive", - "X-Request-Count": "4565", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0437910556793", - "Connection": "Keep-Alive", - "X-Request-Count": "3501", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0333909988403", - "Connection": "Keep-Alive", - "X-Request-Count": "3337", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "105" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: content/posts/1970-01-01-first-title.md\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0466270446777", - "Connection": "Keep-Alive", - "X-Request-Count": "3363", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/.gitattributes", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0510649681091", - "Connection": "Keep-Alive", - "X-Request-Count": "1368", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "136" - }, - "response": "/.github export-ignore\n/.gitattributes export-ignore\n/.editorconfig export-ignore\n/.travis.yml export-ignore\n**/*.js.snap export-ignore\n", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0658478736877", - "Connection": "Keep-Alive", - "X-Request-Count": "2395", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "body": "------WebKitFormBoundaryyCA65G0AAUaFAS8Q\r\nContent-Disposition: form-data; name=\"content/posts/1970-01-01-first-title.md\"; filename=\"1970-01-01-first-title.md\"\r\nContent-Type: application/octet-stream\r\n\r\n---\ntemplate: post\ntitle: first title\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\r\n------WebKitFormBoundaryyCA65G0AAUaFAS8Q\r\nContent-Disposition: form-data; name=\"message\"\r\n\r\nCreate Post â1970-01-01-first-titleâ\r\n------WebKitFormBoundaryyCA65G0AAUaFAS8Q\r\nContent-Disposition: form-data; name=\"branch\"\r\n\r\ncms/posts/1970-01-01-first-title\r\n------WebKitFormBoundaryyCA65G0AAUaFAS8Q\r\nContent-Disposition: form-data; name=\"parents\"\r\n\r\nb782b50eefc7d6f6482ac989eb5c9142d5abfa37\r\n------WebKitFormBoundaryyCA65G0AAUaFAS8Q--\r\n", - "method": "POST", - "url": "/2.0/repositories/owner/repo/src", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "text/html; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/commit/5d85447ae86bb14ff5f36acd0787b2d0acbd6127", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.410921096802", - "Connection": "Keep-Alive", - "X-Request-Count": "977", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "0" - }, - "response": null, - "status": 201 - }, - { - "body": "{\"title\":\"Create Post “1970-01-01-first-title”\",\"source\":{\"branch\":{\"name\":\"cms/posts/1970-01-01-first-title\"}},\"destination\":{\"branch\":{\"name\":\"master\"}},\"description\":\"Automatically generated by Decap CMS\",\"close_source_branch\":true}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.254585981369", - "Connection": "Keep-Alive", - "X-Request-Count": "2307", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "5261" - }, - "response": "{\"rendered\": {\"description\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \" Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"title\": {\"raw\": \"Create Post “1970-01-01-first-title”\", \"markup\": \"markdown\", \"html\": \"Create Post “1970-01-01-first-title”
\", \"type\": \"rendered\"}}, \"type\": \"pullrequest\", \"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:5d85447ae86b%0Db782b50eefc7?from_pullrequest_id=4\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:5d85447ae86b%0Db782b50eefc7?from_pullrequest_id=4\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"reviewers\": [], \"id\": 4, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:45:59.151787+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"5d85447ae86b\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/5d85447ae86b\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/5d85447ae86b\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 0, \"state\": \"OPEN\", \"task_count\": 0, \"participants\": [], \"reason\": \"\", \"updated_on\": \"2020-04-12T09:45:59.179358+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}", - "status": 201 - }, - { - "body": "{\"content\":{\"raw\":\"decap-cms/draft\"}}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/4/comments", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752541", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.138547897339", - "Connection": "Keep-Alive", - "X-Request-Count": "25", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1551" - }, - "response": "{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752541\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752541\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:46:00.139331+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:46:00.142696+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752541}", - "status": 201 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.184765100479", - "Connection": "Keep-Alive", - "X-Request-Count": "2714", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:5d85447ae86b%0Db782b50eefc7?from_pullrequest_id=4\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:5d85447ae86b%0Db782b50eefc7?from_pullrequest_id=4\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 4, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:45:59.151787+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"5d85447ae86b\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/5d85447ae86b\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/5d85447ae86b\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:46:00.142696+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/4/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.109872102737", - "Connection": "Keep-Alive", - "X-Request-Count": "2186", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752541\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752541\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:46:00.139331+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:46:00.142696+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752541}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/diff/cms/posts/1970-01-01-first-title..master?binary=false", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "must-revalidate, max-age=0", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.164749860764", - "Connection": "Keep-Alive", - "X-Request-Count": "1734", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "409" - }, - "response": "diff --git a/content/posts/1970-01-01-first-title.md b/content/posts/1970-01-01-first-title.md\nnew file mode 100644\nindex 0000000..fbe7d6f\n--- /dev/null\n+++ b/content/posts/1970-01-01-first-title.md\n@@ -0,0 +1,10 @@\n+---\n+template: post\n+title: first title\n+date: 1970-01-01T00:00:00.000Z\n+description: first description\n+category: first category\n+tags:\n+ - tag1\n+---\n+first body\n\\ No newline at end of file\n", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/4/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.09725689888", - "Connection": "Keep-Alive", - "X-Request-Count": "1248", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752541\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752541\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:46:00.139331+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:46:00.142696+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752541}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0554859638214", - "Connection": "Keep-Alive", - "X-Request-Count": "4842", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3726" - }, - "response": "{\"name\": \"cms/posts/1970-01-01-first-title\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/cms/posts/1970-01-01-first-title\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/cms/posts/1970-01-01-first-title\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"5d85447ae86bb14ff5f36acd0787b2d0acbd6127\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/5d85447ae86bb14ff5f36acd0787b2d0acbd6127\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/5d85447ae86bb14ff5f36acd0787b2d0acbd6127/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/5d85447ae86bb14ff5f36acd0787b2d0acbd6127\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/5d85447ae86bb14ff5f36acd0787b2d0acbd6127\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/5d85447ae86bb14ff5f36acd0787b2d0acbd6127\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/5d85447ae86bb14ff5f36acd0787b2d0acbd6127/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/5d85447ae86bb14ff5f36acd0787b2d0acbd6127/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:45:58+00:00\", \"message\": \"Create Post “1970-01-01-first-title”\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/5d85447ae86bb14ff5f36acd0787b2d0acbd6127/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0541830062866", - "Connection": "Keep-Alive", - "X-Request-Count": "146", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "154" - }, - "response": "---\ntemplate: post\ntitle: first title\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0843961238861", - "Connection": "Keep-Alive", - "X-Request-Count": "3929", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:5d85447ae86b%0Db782b50eefc7?from_pullrequest_id=4\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:5d85447ae86b%0Db782b50eefc7?from_pullrequest_id=4\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 4, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:45:59.151787+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \" Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"5d85447ae86b\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/5d85447ae86b\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/5d85447ae86b\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:46:00.142696+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/4/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0796661376953", - "Connection": "Keep-Alive", - "X-Request-Count": "3959", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752541\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752541\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:46:00.139331+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:46:00.142696+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752541}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.090980052948", - "Connection": "Keep-Alive", - "X-Request-Count": "1007", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:5d85447ae86b%0Db782b50eefc7?from_pullrequest_id=4\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:5d85447ae86b%0Db782b50eefc7?from_pullrequest_id=4\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 4, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:45:59.151787+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"5d85447ae86b\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/5d85447ae86b\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/5d85447ae86b\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:46:00.142696+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/4/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0348379611969", - "Connection": "Keep-Alive", - "X-Request-Count": "1432", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/4/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0860590934753", - "Connection": "Keep-Alive", - "X-Request-Count": "1305", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752541\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752541\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:46:00.139331+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:46:00.142696+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752541}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "body": "{\"content\":{\"raw\":\"decap-cms/pending_review\"}}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/4/comments", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752543", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0991389751434", - "Connection": "Keep-Alive", - "X-Request-Count": "2190", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1569" - }, - "response": "{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752543\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752543\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_review\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_review
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:46:07.875331+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:46:07.877950+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752543}", - "status": 201 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0923619270325", - "Connection": "Keep-Alive", - "X-Request-Count": "2649", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:5d85447ae86b%0Db782b50eefc7?from_pullrequest_id=4\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:5d85447ae86b%0Db782b50eefc7?from_pullrequest_id=4\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 4, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:45:59.151787+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"5d85447ae86b\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/5d85447ae86b\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/5d85447ae86b\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 2, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:46:07.877950+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/4/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.109750032425", - "Connection": "Keep-Alive", - "X-Request-Count": "1458", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3174" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752541\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752541\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:46:00.139331+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:46:00.142696+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752541}, {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752543\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752543\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_review\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_review
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:46:07.875331+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:46:07.877950+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752543}], \"page\": 1, \"size\": 2}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0947568416595", - "Connection": "Keep-Alive", - "X-Request-Count": "1181", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:5d85447ae86b%0Db782b50eefc7?from_pullrequest_id=4\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:5d85447ae86b%0Db782b50eefc7?from_pullrequest_id=4\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 4, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:45:59.151787+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"5d85447ae86b\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/5d85447ae86b\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/5d85447ae86b\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 2, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:46:07.877950+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/4/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0550410747528", - "Connection": "Keep-Alive", - "X-Request-Count": "3870", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/4/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.114994049072", - "Connection": "Keep-Alive", - "X-Request-Count": "131", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3174" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752541\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752541\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:46:00.139331+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:46:00.142696+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752541}, {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752543\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752543\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_review\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_review
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:46:07.875331+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:46:07.877950+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752543}], \"page\": 1, \"size\": 2}", - "status": 200 - }, - { - "body": "{\"content\":{\"raw\":\"decap-cms/pending_publish\"}}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/4/comments", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752547", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.118505001068", - "Connection": "Keep-Alive", - "X-Request-Count": "9", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1571" - }, - "response": "{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752547\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752547\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_publish\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_publish
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:46:15.113172+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:46:15.115850+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752547}", - "status": 201 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0764219760895", - "Connection": "Keep-Alive", - "X-Request-Count": "3614", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:5d85447ae86b%0Db782b50eefc7?from_pullrequest_id=4\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:5d85447ae86b%0Db782b50eefc7?from_pullrequest_id=4\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 4, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:45:59.151787+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"5d85447ae86b\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/5d85447ae86b\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/5d85447ae86b\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 3, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:46:15.115850+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/4/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0945191383362", - "Connection": "Keep-Alive", - "X-Request-Count": "4270", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4747" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752541\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752541\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:46:00.139331+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:46:00.142696+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752541}, {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752543\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752543\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_review\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_review
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:46:07.875331+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:46:07.877950+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752543}, {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752547\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752547\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_publish\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_publish
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:46:15.113172+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:46:15.115850+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752547}], \"page\": 1, \"size\": 3}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0835130214691", - "Connection": "Keep-Alive", - "X-Request-Count": "3431", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:5d85447ae86b%0Db782b50eefc7?from_pullrequest_id=4\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:5d85447ae86b%0Db782b50eefc7?from_pullrequest_id=4\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 4, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:45:59.151787+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"5d85447ae86b\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/5d85447ae86b\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/5d85447ae86b\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 3, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:46:15.115850+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/4/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0514438152313", - "Connection": "Keep-Alive", - "X-Request-Count": "4523", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/4/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.102993965149", - "Connection": "Keep-Alive", - "X-Request-Count": "1421", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4747" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752541\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752541\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:46:00.139331+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:46:00.142696+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752541}, {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752543\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752543\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_review\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_review
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:46:07.875331+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:46:07.877950+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752543}, {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752547\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752547\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_publish\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_publish
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:46:15.113172+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:46:15.115850+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752547}], \"page\": 1, \"size\": 3}", - "status": 200 - }, - { - "body": "{\"content\":{\"raw\":\"decap-cms/pending_review\"}}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/4/comments", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752550", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0897600650787", - "Connection": "Keep-Alive", - "X-Request-Count": "1139", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1569" - }, - "response": "{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752550\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752550\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_review\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_review
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:46:22.325358+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:46:22.327892+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752550}", - "status": 201 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0991489887238", - "Connection": "Keep-Alive", - "X-Request-Count": "3426", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:5d85447ae86b%0Db782b50eefc7?from_pullrequest_id=4\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:5d85447ae86b%0Db782b50eefc7?from_pullrequest_id=4\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 4, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:45:59.151787+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"5d85447ae86b\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/5d85447ae86b\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/5d85447ae86b\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 4, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:46:22.327892+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/4/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.101145982742", - "Connection": "Keep-Alive", - "X-Request-Count": "3884", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "6318" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752541\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752541\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:46:00.139331+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:46:00.142696+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752541}, {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752543\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752543\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_review\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_review
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:46:07.875331+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:46:07.877950+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752543}, {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752547\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752547\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_publish\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_publish
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:46:15.113172+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:46:15.115850+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752547}, {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752550\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752550\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_review\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_review
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:46:22.325358+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:46:22.327892+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752550}], \"page\": 1, \"size\": 4}", - "status": 200 - }, - { - "body": "{\"content\":{\"raw\":\"decap-cms/draft\"}}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/4/comments", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752553", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.106926202774", - "Connection": "Keep-Alive", - "X-Request-Count": "2438", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1551" - }, - "response": "{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752553\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752553\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:46:29.547349+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:46:29.549973+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752553}", - "status": 201 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0687379837036", - "Connection": "Keep-Alive", - "X-Request-Count": "216", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:5d85447ae86b%0Db782b50eefc7?from_pullrequest_id=4\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:5d85447ae86b%0Db782b50eefc7?from_pullrequest_id=4\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 4, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:45:59.151787+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"5d85447ae86b\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/5d85447ae86b\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/5d85447ae86b\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 5, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:46:29.549973+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/4/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.122594833374", - "Connection": "Keep-Alive", - "X-Request-Count": "4491", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "7871" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752541\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752541\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:46:00.139331+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:46:00.142696+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752541}, {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752543\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752543\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_review\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_review
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:46:07.875331+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:46:07.877950+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752543}, {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752547\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752547\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_publish\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_publish
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:46:15.113172+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:46:15.115850+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752547}, {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752550\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752550\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_review\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_review
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:46:22.325358+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:46:22.327892+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752550}, {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752553\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752553\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:46:29.547349+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:46:29.549973+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752553}], \"page\": 1, \"size\": 5}", - "status": 200 - }, - { - "body": "{\"content\":{\"raw\":\"decap-cms/pending_publish\"}}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/4/comments", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752554", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.075599193573", - "Connection": "Keep-Alive", - "X-Request-Count": "4002", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1571" - }, - "response": "{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752554\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752554\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_publish\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_publish
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:46:36.732472+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:46:36.734782+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752554}", - "status": 201 - } -] diff --git a/source/admin/cypress/fixtures/BitBucket Backend Editorial Workflow__can create an entry.json b/source/admin/cypress/fixtures/BitBucket Backend Editorial Workflow__can create an entry.json deleted file mode 100644 index 82b9221..0000000 --- a/source/admin/cypress/fixtures/BitBucket Backend Editorial Workflow__can create an entry.json +++ /dev/null @@ -1,953 +0,0 @@ -[ - { - "method": "GET", - "url": "/2.0/repositories/owner/repo", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.042503118515", - "Connection": "Keep-Alive", - "X-Request-Count": "3018", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3011" - }, - "response": "{\"scm\": \"git\", \"website\": null, \"has_wiki\": false, \"name\": \"repo\", \"links\": {\"watchers\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/watchers\"}, \"branches\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches\"}, \"tags\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/tags\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits\"}, \"clone\": [{\"href\": \"https://owner@bitbucket.org/owner/repo.git\", \"name\": \"https\"}, {\"href\": \"git@bitbucket.org:owner/repo.git\", \"name\": \"ssh\"}], \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"source\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/src\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}, \"hooks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/hooks\"}, \"forks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/forks\"}, \"downloads\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/downloads\"}, \"pullrequests\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests\"}}, \"fork_policy\": \"allow_forks\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\", \"language\": \"\", \"created_on\": \"2020-04-12T09:43:06.141832+00:00\", \"mainbranch\": {\"type\": \"branch\", \"name\": \"master\"}, \"full_name\": \"owner/repo\", \"has_issues\": false, \"owner\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:43:21.808525+00:00\", \"size\": 4282777, \"type\": \"repository\", \"slug\": \"repo\", \"is_private\": false, \"description\": \"\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/user", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0593671798706", - "X-Accepted-OAuth-Scopes": "account", - "Connection": "Keep-Alive", - "X-Version": "e1ce49ad4aa3", - "X-Request-Count": "2073", - "X-Frame-Options": "SAMEORIGIN", - "content-length": "1041" - }, - "response": "{\"name\":\"owner\",\"display_name\":\"owner\",\"links\":{\"avatar\":{\"href\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\"}},\"nickname\":\"owner\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0601840019226", - "Connection": "Keep-Alive", - "X-Request-Count": "2411", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/static/media?max_depth=1&pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0365009307861", - "Connection": "Keep-Alive", - "X-Request-Count": "2000", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "78" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: static/media\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.068384885788", - "Connection": "Keep-Alive", - "X-Request-Count": "3857", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0531430244446", - "Connection": "Keep-Alive", - "X-Request-Count": "4121", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts?max_depth=1&pagelen=20", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0517830848694", - "Connection": "Keep-Alive", - "X-Request-Count": "4682", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "6396" - }, - "response": "{\"pagelen\":20,\"values\":[{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"}},\"path\":\"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":1707},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"}},\"path\":\"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2565},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"}},\"path\":\"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2786},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"}},\"path\":\"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":16071},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"}},\"path\":\"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":7465}],\"page\":1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0328209400177", - "Connection": "Keep-Alive", - "X-Request-Count": "4096", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2565" - }, - "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n \n\t \n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0368058681488", - "Connection": "Keep-Alive", - "X-Request-Count": "4050", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2786" - }, - "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n\n\t\t\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.
\n\t\t\n\t\n\t \n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0432062149048", - "Connection": "Keep-Alive", - "X-Request-Count": "3188", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1707" - }, - "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0984601974487", - "Connection": "Keep-Alive", - "X-Request-Count": "5000", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.100867986679", - "Connection": "Keep-Alive", - "X-Request-Count": "288", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-02-02---A-Brief-History-of-Typography.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.120209932327", - "Connection": "Keep-Alive", - "X-Request-Count": "3480", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0384819507599", - "Connection": "Keep-Alive", - "X-Request-Count": "2172", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "16071" - }, - "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western worldâs first major printed books, the âFortyâTwoâLineâ Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western worldâs first major printed books, the âFortyâTwoâLineâ Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 â 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n\n\t \n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information â including revolutionary ideas â transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a âsecretâ. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439â1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him âlike a ray of lightâ.\n\n\n\t
Johannes Gutenberg \n\n\t \n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fustâs son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n\n\t
Early wooden printing press as depicted in 1568. \n\n\t \n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454â55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the FustâSchöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the GutenbergâFust shop might have employed as many as 25 craftsmen.\n\n\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of âmovable typeâ.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n\n\t\t\nAll that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to followâyour grace would be able to read it without effort, and indeed without glasses.
\n\t\t\n\t\n\t \n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in âcuneiformâ style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that âthe decisive factor for the birth of typographyâ, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0315341949463", - "Connection": "Keep-Alive", - "X-Request-Count": "1550", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "7465" - }, - "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didnât mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other â the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n\n\n*The 42âLine Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But itâs the third transition that stripped it naked. Typefaces are faceless these days. Theyâre just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the âright oneâ is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\nâ Massimo Vignelli\n\nTypography is not about typefaces. Itâs not about what looks best, itâs about what feels right. What communicates the message best. Typography, in its essence, is about the message. âTypographical design should perform optically what the speaker creates through voice and gesture of his thoughts.â, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because itâs a safe option. Itâs always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still donât spot it in the street.\n\n\n\t\t\nIt is a press, certainly, but a press from which shall flow in inexhaustible streams⦠Through it, god will spread his word.
\n\t\t\n\t\n\t \n\nTypefaces donât look handmade these days. And thatâs all right. They donât have to. Industrialism took that away from them and weâre fine with it. Weâve traded that part of humanity for a process that produces more books that are easier to read. That canât be bad. And it isnât.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> â Eric Gill\n\nWeâve come close to âperfectionâ in the last five centuries. The letters are crisp and without rough edges. We print our compositions with highâprecision printers on a high quality, machine made paper.\n\n\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we donât care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. Thereâs no meaning in our work. Type sizes, leading, margins⦠Itâs all just a few clicks or lines of code. The message isnât important anymore. Thereâs no more âwhyâ behind the âwhatâ.\n\n## Chasing perfection\n\nHuman beings arenât perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2017-18-08---The-Birth-of-Movable-Type.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0799510478973", - "Connection": "Keep-Alive", - "X-Request-Count": "2976", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nKnowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0844869613647", - "Connection": "Keep-Alive", - "X-Request-Count": "150", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0479109287262", - "Connection": "Keep-Alive", - "X-Request-Count": "1368", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name ~ \"cms/\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0476729869843", - "Connection": "Keep-Alive", - "X-Request-Count": "2527", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0590960979462", - "Connection": "Keep-Alive", - "X-Request-Count": "1069", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0319089889526", - "Connection": "Keep-Alive", - "X-Request-Count": "411", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "105" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: content/posts/1970-01-01-first-title.md\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0470519065857", - "Connection": "Keep-Alive", - "X-Request-Count": "2896", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/.gitattributes", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0537631511688", - "Connection": "Keep-Alive", - "X-Request-Count": "4266", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "136" - }, - "response": "/.github export-ignore\n/.gitattributes export-ignore\n/.editorconfig export-ignore\n/.travis.yml export-ignore\n**/*.js.snap export-ignore\n", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0565958023071", - "Connection": "Keep-Alive", - "X-Request-Count": "1152", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "body": "------WebKitFormBoundaryAznk3aoCY8MyFLF1\r\nContent-Disposition: form-data; name=\"content/posts/1970-01-01-first-title.md\"; filename=\"1970-01-01-first-title.md\"\r\nContent-Type: application/octet-stream\r\n\r\n---\ntemplate: post\ntitle: first title\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\r\n------WebKitFormBoundaryAznk3aoCY8MyFLF1\r\nContent-Disposition: form-data; name=\"message\"\r\n\r\nCreate Post â1970-01-01-first-titleâ\r\n------WebKitFormBoundaryAznk3aoCY8MyFLF1\r\nContent-Disposition: form-data; name=\"branch\"\r\n\r\ncms/posts/1970-01-01-first-title\r\n------WebKitFormBoundaryAznk3aoCY8MyFLF1\r\nContent-Disposition: form-data; name=\"parents\"\r\n\r\nb782b50eefc7d6f6482ac989eb5c9142d5abfa37\r\n------WebKitFormBoundaryAznk3aoCY8MyFLF1--\r\n", - "method": "POST", - "url": "/2.0/repositories/owner/repo/src", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "text/html; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/commit/e56d88b0d78d49c607cdb742c54eb20a6004fa3a", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.481726169586", - "Connection": "Keep-Alive", - "X-Request-Count": "3264", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "0" - }, - "response": null, - "status": 201 - }, - { - "body": "{\"title\":\"Create Post “1970-01-01-first-title”\",\"source\":{\"branch\":{\"name\":\"cms/posts/1970-01-01-first-title\"}},\"destination\":{\"branch\":{\"name\":\"master\"}},\"description\":\"Automatically generated by Decap CMS\",\"close_source_branch\":true}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.302129030228", - "Connection": "Keep-Alive", - "X-Request-Count": "2455", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "5261" - }, - "response": "{\"rendered\": {\"description\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \" Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"title\": {\"raw\": \"Create Post “1970-01-01-first-title”\", \"markup\": \"markdown\", \"html\": \"Create Post “1970-01-01-first-title”
\", \"type\": \"rendered\"}}, \"type\": \"pullrequest\", \"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:e56d88b0d78d%0Db782b50eefc7?from_pullrequest_id=1\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:e56d88b0d78d%0Db782b50eefc7?from_pullrequest_id=1\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"reviewers\": [], \"id\": 1, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:43:51.715570+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"e56d88b0d78d\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/e56d88b0d78d\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/e56d88b0d78d\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 0, \"state\": \"OPEN\", \"task_count\": 0, \"participants\": [], \"reason\": \"\", \"updated_on\": \"2020-04-12T09:43:51.753902+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}", - "status": 201 - }, - { - "body": "{\"content\":{\"raw\":\"decap-cms/draft\"}}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/1/comments", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144752504", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0871188640594", - "Connection": "Keep-Alive", - "X-Request-Count": "2546", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1551" - }, - "response": "{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144752504\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1/_/diff#comment-144752504\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 1, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:43:52.522142+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:43:52.524572+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752504}", - "status": 201 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0779490470886", - "Connection": "Keep-Alive", - "X-Request-Count": "3464", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:e56d88b0d78d%0Db782b50eefc7?from_pullrequest_id=1\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:e56d88b0d78d%0Db782b50eefc7?from_pullrequest_id=1\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 1, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:43:51.715570+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"e56d88b0d78d\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/e56d88b0d78d\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/e56d88b0d78d\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:43:52.524572+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/1/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0956559181213", - "Connection": "Keep-Alive", - "X-Request-Count": "3856", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144752504\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1/_/diff#comment-144752504\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 1, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:43:52.522142+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:43:52.524572+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752504}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/diff/cms/posts/1970-01-01-first-title..master?binary=false", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "must-revalidate, max-age=0", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.13046002388", - "Connection": "Keep-Alive", - "X-Request-Count": "4183", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "409" - }, - "response": "diff --git a/content/posts/1970-01-01-first-title.md b/content/posts/1970-01-01-first-title.md\nnew file mode 100644\nindex 0000000..fbe7d6f\n--- /dev/null\n+++ b/content/posts/1970-01-01-first-title.md\n@@ -0,0 +1,10 @@\n+---\n+template: post\n+title: first title\n+date: 1970-01-01T00:00:00.000Z\n+description: first description\n+category: first category\n+tags:\n+ - tag1\n+---\n+first body\n\\ No newline at end of file\n", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/1/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0866940021515", - "Connection": "Keep-Alive", - "X-Request-Count": "967", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144752504\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1/_/diff#comment-144752504\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 1, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:43:52.522142+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:43:52.524572+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752504}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0773870944977", - "Connection": "Keep-Alive", - "X-Request-Count": "1088", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3726" - }, - "response": "{\"name\": \"cms/posts/1970-01-01-first-title\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/cms/posts/1970-01-01-first-title\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/cms/posts/1970-01-01-first-title\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"e56d88b0d78d49c607cdb742c54eb20a6004fa3a\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/e56d88b0d78d49c607cdb742c54eb20a6004fa3a\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/e56d88b0d78d49c607cdb742c54eb20a6004fa3a/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/e56d88b0d78d49c607cdb742c54eb20a6004fa3a\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/e56d88b0d78d49c607cdb742c54eb20a6004fa3a\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/e56d88b0d78d49c607cdb742c54eb20a6004fa3a\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/e56d88b0d78d49c607cdb742c54eb20a6004fa3a/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/e56d88b0d78d49c607cdb742c54eb20a6004fa3a/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:43:50+00:00\", \"message\": \"Create Post “1970-01-01-first-title”\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/e56d88b0d78d49c607cdb742c54eb20a6004fa3a/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0633170604706", - "Connection": "Keep-Alive", - "X-Request-Count": "4678", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "154" - }, - "response": "---\ntemplate: post\ntitle: first title\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0993571281433", - "Connection": "Keep-Alive", - "X-Request-Count": "2855", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:e56d88b0d78d%0Db782b50eefc7?from_pullrequest_id=1\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:e56d88b0d78d%0Db782b50eefc7?from_pullrequest_id=1\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 1, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:43:51.715570+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \" Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"e56d88b0d78d\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/e56d88b0d78d\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/e56d88b0d78d\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:43:52.524572+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/1/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0860180854797", - "Connection": "Keep-Alive", - "X-Request-Count": "4077", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144752504\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1/_/diff#comment-144752504\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 1, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:43:52.522142+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:43:52.524572+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752504}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/1/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0353970527649", - "Connection": "Keep-Alive", - "X-Request-Count": "1801", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - } -] diff --git a/source/admin/cypress/fixtures/BitBucket Backend Editorial Workflow__can delete an entry.json b/source/admin/cypress/fixtures/BitBucket Backend Editorial Workflow__can delete an entry.json deleted file mode 100644 index a992375..0000000 --- a/source/admin/cypress/fixtures/BitBucket Backend Editorial Workflow__can delete an entry.json +++ /dev/null @@ -1,1083 +0,0 @@ -[ - { - "method": "GET", - "url": "/2.0/repositories/owner/repo", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0469279289246", - "Connection": "Keep-Alive", - "X-Request-Count": "1208", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3011" - }, - "response": "{\"scm\": \"git\", \"website\": null, \"has_wiki\": false, \"name\": \"repo\", \"links\": {\"watchers\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/watchers\"}, \"branches\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches\"}, \"tags\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/tags\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits\"}, \"clone\": [{\"href\": \"https://owner@bitbucket.org/owner/repo.git\", \"name\": \"https\"}, {\"href\": \"git@bitbucket.org:owner/repo.git\", \"name\": \"ssh\"}], \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"source\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/src\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}, \"hooks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/hooks\"}, \"forks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/forks\"}, \"downloads\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/downloads\"}, \"pullrequests\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests\"}}, \"fork_policy\": \"allow_forks\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\", \"language\": \"\", \"created_on\": \"2020-04-12T09:43:06.141832+00:00\", \"mainbranch\": {\"type\": \"branch\", \"name\": \"master\"}, \"full_name\": \"owner/repo\", \"has_issues\": false, \"owner\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:48:42.177752+00:00\", \"size\": 4421834, \"type\": \"repository\", \"slug\": \"repo\", \"is_private\": false, \"description\": \"\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/user", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0287208557129", - "X-Accepted-OAuth-Scopes": "account", - "Connection": "Keep-Alive", - "X-Request-Count": "3384", - "X-Version": "e1ce49ad4aa3", - "X-Frame-Options": "SAMEORIGIN", - "content-length": "1041" - }, - "response": "{\"name\":\"owner\",\"display_name\":\"owner\",\"links\":{\"avatar\":{\"href\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\"}},\"nickname\":\"owner\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0549190044403", - "Connection": "Keep-Alive", - "X-Request-Count": "4039", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0521240234375", - "Connection": "Keep-Alive", - "X-Request-Count": "3551", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0546820163727", - "Connection": "Keep-Alive", - "X-Request-Count": "3680", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/static/media?max_depth=1&pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0462441444397", - "Connection": "Keep-Alive", - "X-Request-Count": "1559", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "78" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: static/media\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts?max_depth=1&pagelen=20", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0486731529236", - "Connection": "Keep-Alive", - "X-Request-Count": "3138", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "6396" - }, - "response": "{\"pagelen\":20,\"values\":[{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"}},\"path\":\"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":1707},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"}},\"path\":\"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2565},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"}},\"path\":\"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2786},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"}},\"path\":\"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":16071},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"}},\"path\":\"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":7465}],\"page\":1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0367288589478", - "Connection": "Keep-Alive", - "X-Request-Count": "3184", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2565" - }, - "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n \n\t \n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0519618988037", - "Connection": "Keep-Alive", - "X-Request-Count": "2600", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2786" - }, - "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n\n\t\t\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.
\n\t\t\n\t\n\t \n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0531649589539", - "Connection": "Keep-Alive", - "X-Request-Count": "4732", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1707" - }, - "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.127557992935", - "Connection": "Keep-Alive", - "X-Request-Count": "4289", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-02-02---A-Brief-History-of-Typography.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.101102113724", - "Connection": "Keep-Alive", - "X-Request-Count": "3311", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0942740440369", - "Connection": "Keep-Alive", - "X-Request-Count": "3272", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0394539833069", - "Connection": "Keep-Alive", - "X-Request-Count": "3459", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "16071" - }, - "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western worldâs first major printed books, the âFortyâTwoâLineâ Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western worldâs first major printed books, the âFortyâTwoâLineâ Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 â 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n\n\t \n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information â including revolutionary ideas â transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a âsecretâ. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439â1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him âlike a ray of lightâ.\n\n\n\t
Johannes Gutenberg \n\n\t \n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fustâs son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n\n\t
Early wooden printing press as depicted in 1568. \n\n\t \n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454â55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the FustâSchöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the GutenbergâFust shop might have employed as many as 25 craftsmen.\n\n\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of âmovable typeâ.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n\n\t\t\nAll that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to followâyour grace would be able to read it without effort, and indeed without glasses.
\n\t\t\n\t\n\t \n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in âcuneiformâ style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that âthe decisive factor for the birth of typographyâ, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0414872169495", - "Connection": "Keep-Alive", - "X-Request-Count": "4026", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "7465" - }, - "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didnât mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other â the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n\n\n*The 42âLine Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But itâs the third transition that stripped it naked. Typefaces are faceless these days. Theyâre just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the âright oneâ is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\nâ Massimo Vignelli\n\nTypography is not about typefaces. Itâs not about what looks best, itâs about what feels right. What communicates the message best. Typography, in its essence, is about the message. âTypographical design should perform optically what the speaker creates through voice and gesture of his thoughts.â, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because itâs a safe option. Itâs always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still donât spot it in the street.\n\n\n\t\t\nIt is a press, certainly, but a press from which shall flow in inexhaustible streams⦠Through it, god will spread his word.
\n\t\t\n\t\n\t \n\nTypefaces donât look handmade these days. And thatâs all right. They donât have to. Industrialism took that away from them and weâre fine with it. Weâve traded that part of humanity for a process that produces more books that are easier to read. That canât be bad. And it isnât.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> â Eric Gill\n\nWeâve come close to âperfectionâ in the last five centuries. The letters are crisp and without rough edges. We print our compositions with highâprecision printers on a high quality, machine made paper.\n\n\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we donât care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. Thereâs no meaning in our work. Type sizes, leading, margins⦠Itâs all just a few clicks or lines of code. The message isnât important anymore. Thereâs no more âwhyâ behind the âwhatâ.\n\n## Chasing perfection\n\nHuman beings arenât perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2017-18-08---The-Birth-of-Movable-Type.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0900490283966", - "Connection": "Keep-Alive", - "X-Request-Count": "4825", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nKnowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.113325119019", - "Connection": "Keep-Alive", - "X-Request-Count": "4045", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name ~ \"cms/\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0611798763275", - "Connection": "Keep-Alive", - "X-Request-Count": "4950", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0708889961243", - "Connection": "Keep-Alive", - "X-Request-Count": "2692", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.057177066803", - "Connection": "Keep-Alive", - "X-Request-Count": "47", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.042454957962", - "Connection": "Keep-Alive", - "X-Request-Count": "4951", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "105" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: content/posts/1970-01-01-first-title.md\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0588760375977", - "Connection": "Keep-Alive", - "X-Request-Count": "4598", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/.gitattributes", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0430190563202", - "Connection": "Keep-Alive", - "X-Request-Count": "3539", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "136" - }, - "response": "/.github export-ignore\n/.gitattributes export-ignore\n/.editorconfig export-ignore\n/.travis.yml export-ignore\n**/*.js.snap export-ignore\n", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0636479854584", - "Connection": "Keep-Alive", - "X-Request-Count": "2500", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "body": "------WebKitFormBoundarykv5eiMmTWwBtwZC2\r\nContent-Disposition: form-data; name=\"content/posts/1970-01-01-first-title.md\"; filename=\"1970-01-01-first-title.md\"\r\nContent-Type: application/octet-stream\r\n\r\n---\ntemplate: post\ntitle: first title\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\r\n------WebKitFormBoundarykv5eiMmTWwBtwZC2\r\nContent-Disposition: form-data; name=\"message\"\r\n\r\nCreate Post â1970-01-01-first-titleâ\r\n------WebKitFormBoundarykv5eiMmTWwBtwZC2\r\nContent-Disposition: form-data; name=\"branch\"\r\n\r\ncms/posts/1970-01-01-first-title\r\n------WebKitFormBoundarykv5eiMmTWwBtwZC2\r\nContent-Disposition: form-data; name=\"parents\"\r\n\r\nb782b50eefc7d6f6482ac989eb5c9142d5abfa37\r\n------WebKitFormBoundarykv5eiMmTWwBtwZC2--\r\n", - "method": "POST", - "url": "/2.0/repositories/owner/repo/src", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "text/html; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/commit/94afd8fa5a0fd527e519fc86a34a53ad11e56a1e", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.490168094635", - "Connection": "Keep-Alive", - "X-Request-Count": "1082", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "0" - }, - "response": null, - "status": 201 - }, - { - "body": "{\"title\":\"Create Post “1970-01-01-first-title”\",\"source\":{\"branch\":{\"name\":\"cms/posts/1970-01-01-first-title\"}},\"destination\":{\"branch\":{\"name\":\"master\"}},\"description\":\"Automatically generated by Decap CMS\",\"close_source_branch\":true}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.366855859756", - "Connection": "Keep-Alive", - "X-Request-Count": "4019", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "5261" - }, - "response": "{\"rendered\": {\"description\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \" Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"title\": {\"raw\": \"Create Post “1970-01-01-first-title”\", \"markup\": \"markdown\", \"html\": \"Create Post “1970-01-01-first-title”
\", \"type\": \"rendered\"}}, \"type\": \"pullrequest\", \"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:94afd8fa5a0f%0Db782b50eefc7?from_pullrequest_id=8\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/8\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:94afd8fa5a0f%0Db782b50eefc7?from_pullrequest_id=8\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"reviewers\": [], \"id\": 8, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:49:00.737708+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"94afd8fa5a0f\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/94afd8fa5a0f\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/94afd8fa5a0f\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 0, \"state\": \"OPEN\", \"task_count\": 0, \"participants\": [], \"reason\": \"\", \"updated_on\": \"2020-04-12T09:49:00.790911+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}", - "status": 201 - }, - { - "body": "{\"content\":{\"raw\":\"decap-cms/draft\"}}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/8/comments", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/comments/144752596", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.14608502388", - "Connection": "Keep-Alive", - "X-Request-Count": "3179", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1551" - }, - "response": "{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/comments/144752596\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/8/_/diff#comment-144752596\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 8, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/8\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:49:01.681384+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:49:01.686075+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752596}", - "status": 201 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.128218889236", - "Connection": "Keep-Alive", - "X-Request-Count": "4124", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:94afd8fa5a0f%0Db782b50eefc7?from_pullrequest_id=8\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/8\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:94afd8fa5a0f%0Db782b50eefc7?from_pullrequest_id=8\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 8, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:49:00.737708+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"94afd8fa5a0f\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/94afd8fa5a0f\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/94afd8fa5a0f\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:49:01.686075+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/8/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.108931064606", - "Connection": "Keep-Alive", - "X-Request-Count": "582", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/comments/144752596\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/8/_/diff#comment-144752596\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 8, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/8\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:49:01.681384+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:49:01.686075+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752596}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/diff/cms/posts/1970-01-01-first-title..master?binary=false", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "must-revalidate, max-age=0", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.126602888107", - "Connection": "Keep-Alive", - "X-Request-Count": "4336", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "409" - }, - "response": "diff --git a/content/posts/1970-01-01-first-title.md b/content/posts/1970-01-01-first-title.md\nnew file mode 100644\nindex 0000000..fbe7d6f\n--- /dev/null\n+++ b/content/posts/1970-01-01-first-title.md\n@@ -0,0 +1,10 @@\n+---\n+template: post\n+title: first title\n+date: 1970-01-01T00:00:00.000Z\n+description: first description\n+category: first category\n+tags:\n+ - tag1\n+---\n+first body\n\\ No newline at end of file\n", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/8/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0858030319214", - "Connection": "Keep-Alive", - "X-Request-Count": "1132", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/comments/144752596\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/8/_/diff#comment-144752596\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 8, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/8\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:49:01.681384+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:49:01.686075+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752596}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0700461864471", - "Connection": "Keep-Alive", - "X-Request-Count": "4156", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3726" - }, - "response": "{\"name\": \"cms/posts/1970-01-01-first-title\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/cms/posts/1970-01-01-first-title\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/cms/posts/1970-01-01-first-title\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"94afd8fa5a0fd527e519fc86a34a53ad11e56a1e\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/94afd8fa5a0fd527e519fc86a34a53ad11e56a1e\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/94afd8fa5a0fd527e519fc86a34a53ad11e56a1e/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/94afd8fa5a0fd527e519fc86a34a53ad11e56a1e\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/94afd8fa5a0fd527e519fc86a34a53ad11e56a1e\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/94afd8fa5a0fd527e519fc86a34a53ad11e56a1e\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/94afd8fa5a0fd527e519fc86a34a53ad11e56a1e/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/94afd8fa5a0fd527e519fc86a34a53ad11e56a1e/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:48:59+00:00\", \"message\": \"Create Post “1970-01-01-first-title”\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/94afd8fa5a0fd527e519fc86a34a53ad11e56a1e/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0697560310364", - "Connection": "Keep-Alive", - "X-Request-Count": "5", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "154" - }, - "response": "---\ntemplate: post\ntitle: first title\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0861179828644", - "Connection": "Keep-Alive", - "X-Request-Count": "2355", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:94afd8fa5a0f%0Db782b50eefc7?from_pullrequest_id=8\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/8\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:94afd8fa5a0f%0Db782b50eefc7?from_pullrequest_id=8\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 8, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:49:00.737708+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \" Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"94afd8fa5a0f\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/94afd8fa5a0f\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/94afd8fa5a0f\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:49:01.686075+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/8/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.082731962204", - "Connection": "Keep-Alive", - "X-Request-Count": "912", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/comments/144752596\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/8/_/diff#comment-144752596\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 8, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/8\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:49:01.681384+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:49:01.686075+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752596}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0985481739044", - "Connection": "Keep-Alive", - "X-Request-Count": "1344", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:94afd8fa5a0f%0Db782b50eefc7?from_pullrequest_id=8\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/8\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:94afd8fa5a0f%0Db782b50eefc7?from_pullrequest_id=8\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 8, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:49:00.737708+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"94afd8fa5a0f\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/94afd8fa5a0f\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/94afd8fa5a0f\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:49:01.686075+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/8/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0439388751984", - "Connection": "Keep-Alive", - "X-Request-Count": "2185", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/8/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0875768661499", - "Connection": "Keep-Alive", - "X-Request-Count": "3856", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/comments/144752596\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/8/_/diff#comment-144752596\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 8, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/8\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:49:01.681384+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:49:01.686075+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752596}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/8/decline", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.207610845566", - "Connection": "Keep-Alive", - "X-Request-Count": "4123", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "6577" - }, - "response": "{\"rendered\": {\"description\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"title\": {\"raw\": \"Create Post “1970-01-01-first-title”\", \"markup\": \"markdown\", \"html\": \"Create Post “1970-01-01-first-title”
\", \"type\": \"rendered\"}}, \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:94afd8fa5a0f%0Db782b50eefc7?from_pullrequest_id=8\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/8\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:94afd8fa5a0f%0Db782b50eefc7?from_pullrequest_id=8\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/8/statuses\"}}, \"close_source_branch\": false, \"reviewers\": [], \"created_on\": \"2020-04-12T09:49:00.737708+00:00\", \"id\": 8, \"closed_on\": \"2020-04-12T09:49:09.448471+00:00\", \"title\": \"Create Post “1970-01-01-first-title”\", \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"comment_count\": 1, \"source\": {\"commit\": {\"hash\": \"94afd8fa5a0f\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/94afd8fa5a0f\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/94afd8fa5a0f\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"state\": \"DECLINED\", \"type\": \"pullrequest\", \"description\": \"Automatically generated by Decap CMS\", \"reason\": \"\", \"task_count\": 0, \"merge_commit\": null, \"closed_by\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"participants\": [{\"role\": \"PARTICIPANT\", \"participated_on\": \"2020-04-12T09:49:01.686075+00:00\", \"type\": \"participant\", \"approved\": false, \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}], \"updated_on\": \"2020-04-12T09:49:09.448479+00:00\"}", - "status": 200 - }, - { - "method": "DELETE", - "url": "/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "text/html; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.457318782806", - "Connection": "Keep-Alive", - "X-Request-Count": "3689", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "0" - }, - "response": null, - "status": 204 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0637500286102", - "Connection": "Keep-Alive", - "X-Request-Count": "951", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - } -] diff --git a/source/admin/cypress/fixtures/BitBucket Backend Editorial Workflow__can publish an editorial workflow entry.json b/source/admin/cypress/fixtures/BitBucket Backend Editorial Workflow__can publish an editorial workflow entry.json deleted file mode 100644 index d8f0f3d..0000000 --- a/source/admin/cypress/fixtures/BitBucket Backend Editorial Workflow__can publish an editorial workflow entry.json +++ /dev/null @@ -1,1321 +0,0 @@ -[ - { - "method": "GET", - "url": "/2.0/repositories/owner/repo", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.036915063858", - "Connection": "Keep-Alive", - "X-Request-Count": "4141", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3011" - }, - "response": "{\"scm\": \"git\", \"website\": null, \"has_wiki\": false, \"name\": \"repo\", \"links\": {\"watchers\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/watchers\"}, \"branches\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches\"}, \"tags\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/tags\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits\"}, \"clone\": [{\"href\": \"https://owner@bitbucket.org/owner/repo.git\", \"name\": \"https\"}, {\"href\": \"git@bitbucket.org:owner/repo.git\", \"name\": \"ssh\"}], \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"source\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/src\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}, \"hooks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/hooks\"}, \"forks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/forks\"}, \"downloads\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/downloads\"}, \"pullrequests\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests\"}}, \"fork_policy\": \"allow_forks\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\", \"language\": \"\", \"created_on\": \"2020-04-12T09:43:06.141832+00:00\", \"mainbranch\": {\"type\": \"branch\", \"name\": \"master\"}, \"full_name\": \"owner/repo\", \"has_issues\": false, \"owner\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:44:47.402021+00:00\", \"size\": 4349042, \"type\": \"repository\", \"slug\": \"repo\", \"is_private\": false, \"description\": \"\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/user", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0339670181274", - "X-Accepted-OAuth-Scopes": "account", - "Connection": "Keep-Alive", - "X-Version": "e1ce49ad4aa3", - "X-Request-Count": "1191", - "X-Frame-Options": "SAMEORIGIN", - "content-length": "1041" - }, - "response": "{\"name\":\"owner\",\"display_name\":\"owner\",\"links\":{\"avatar\":{\"href\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\"}},\"nickname\":\"owner\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0706300735474", - "Connection": "Keep-Alive", - "X-Request-Count": "119", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0526459217072", - "Connection": "Keep-Alive", - "X-Request-Count": "4269", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/static/media?max_depth=1&pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0351660251617", - "Connection": "Keep-Alive", - "X-Request-Count": "3681", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "78" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: static/media\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.056941986084", - "Connection": "Keep-Alive", - "X-Request-Count": "1731", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts?max_depth=1&pagelen=20", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0397069454193", - "Connection": "Keep-Alive", - "X-Request-Count": "707", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "6396" - }, - "response": "{\"pagelen\":20,\"values\":[{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"}},\"path\":\"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":1707},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"}},\"path\":\"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2565},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"}},\"path\":\"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2786},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"}},\"path\":\"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":16071},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"}},\"path\":\"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":7465}],\"page\":1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0314929485321", - "Connection": "Keep-Alive", - "X-Request-Count": "753", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1707" - }, - "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0379412174225", - "Connection": "Keep-Alive", - "X-Request-Count": "69", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2565" - }, - "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n \n\t \n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0480711460114", - "Connection": "Keep-Alive", - "X-Request-Count": "3415", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2786" - }, - "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n\n\t\t\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.
\n\t\t\n\t\n\t \n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.106070995331", - "Connection": "Keep-Alive", - "X-Request-Count": "1982", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-02-02---A-Brief-History-of-Typography.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.112732887268", - "Connection": "Keep-Alive", - "X-Request-Count": "3077", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.106251955032", - "Connection": "Keep-Alive", - "X-Request-Count": "4781", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0312728881836", - "Connection": "Keep-Alive", - "X-Request-Count": "3314", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "16071" - }, - "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western worldâs first major printed books, the âFortyâTwoâLineâ Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western worldâs first major printed books, the âFortyâTwoâLineâ Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 â 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n\n\t \n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information â including revolutionary ideas â transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a âsecretâ. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439â1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him âlike a ray of lightâ.\n\n\n\t
Johannes Gutenberg \n\n\t \n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fustâs son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n\n\t
Early wooden printing press as depicted in 1568. \n\n\t \n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454â55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the FustâSchöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the GutenbergâFust shop might have employed as many as 25 craftsmen.\n\n\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of âmovable typeâ.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n\n\t\t\nAll that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to followâyour grace would be able to read it without effort, and indeed without glasses.
\n\t\t\n\t\n\t \n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in âcuneiformâ style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that âthe decisive factor for the birth of typographyâ, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0357069969177", - "Connection": "Keep-Alive", - "X-Request-Count": "670", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "7465" - }, - "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didnât mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other â the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n\n\n*The 42âLine Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But itâs the third transition that stripped it naked. Typefaces are faceless these days. Theyâre just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the âright oneâ is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\nâ Massimo Vignelli\n\nTypography is not about typefaces. Itâs not about what looks best, itâs about what feels right. What communicates the message best. Typography, in its essence, is about the message. âTypographical design should perform optically what the speaker creates through voice and gesture of his thoughts.â, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because itâs a safe option. Itâs always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still donât spot it in the street.\n\n\n\t\t\nIt is a press, certainly, but a press from which shall flow in inexhaustible streams⦠Through it, god will spread his word.
\n\t\t\n\t\n\t \n\nTypefaces donât look handmade these days. And thatâs all right. They donât have to. Industrialism took that away from them and weâre fine with it. Weâve traded that part of humanity for a process that produces more books that are easier to read. That canât be bad. And it isnât.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> â Eric Gill\n\nWeâve come close to âperfectionâ in the last five centuries. The letters are crisp and without rough edges. We print our compositions with highâprecision printers on a high quality, machine made paper.\n\n\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we donât care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. Thereâs no meaning in our work. Type sizes, leading, margins⦠Itâs all just a few clicks or lines of code. The message isnât important anymore. Thereâs no more âwhyâ behind the âwhatâ.\n\n## Chasing perfection\n\nHuman beings arenât perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2017-18-08---The-Birth-of-Movable-Type.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0967218875885", - "Connection": "Keep-Alive", - "X-Request-Count": "5002", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nKnowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.108127117157", - "Connection": "Keep-Alive", - "X-Request-Count": "2755", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name ~ \"cms/\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0775201320648", - "Connection": "Keep-Alive", - "X-Request-Count": "1155", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.130781173706", - "Connection": "Keep-Alive", - "X-Request-Count": "1860", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.121787071228", - "Connection": "Keep-Alive", - "X-Request-Count": "2552", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0717198848724", - "Connection": "Keep-Alive", - "X-Request-Count": "1934", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "105" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: content/posts/1970-01-01-first-title.md\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0825970172882", - "Connection": "Keep-Alive", - "X-Request-Count": "3466", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/.gitattributes", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0405910015106", - "Connection": "Keep-Alive", - "X-Request-Count": "4528", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "136" - }, - "response": "/.github export-ignore\n/.gitattributes export-ignore\n/.editorconfig export-ignore\n/.travis.yml export-ignore\n**/*.js.snap export-ignore\n", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0736379623413", - "Connection": "Keep-Alive", - "X-Request-Count": "4792", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "body": "------WebKitFormBoundaryIuq64tWr1xMajKNM\r\nContent-Disposition: form-data; name=\"content/posts/1970-01-01-first-title.md\"; filename=\"1970-01-01-first-title.md\"\r\nContent-Type: application/octet-stream\r\n\r\n---\ntemplate: post\ntitle: first title\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\r\n------WebKitFormBoundaryIuq64tWr1xMajKNM\r\nContent-Disposition: form-data; name=\"message\"\r\n\r\nCreate Post â1970-01-01-first-titleâ\r\n------WebKitFormBoundaryIuq64tWr1xMajKNM\r\nContent-Disposition: form-data; name=\"branch\"\r\n\r\ncms/posts/1970-01-01-first-title\r\n------WebKitFormBoundaryIuq64tWr1xMajKNM\r\nContent-Disposition: form-data; name=\"parents\"\r\n\r\nb782b50eefc7d6f6482ac989eb5c9142d5abfa37\r\n------WebKitFormBoundaryIuq64tWr1xMajKNM--\r\n", - "method": "POST", - "url": "/2.0/repositories/owner/repo/src", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "text/html; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/commit/abe65ef604581bf74f9e65278745d568e4127610", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.525949954987", - "Connection": "Keep-Alive", - "X-Request-Count": "4114", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "0" - }, - "response": null, - "status": 201 - }, - { - "body": "{\"title\":\"Create Post “1970-01-01-first-title”\",\"source\":{\"branch\":{\"name\":\"cms/posts/1970-01-01-first-title\"}},\"destination\":{\"branch\":{\"name\":\"master\"}},\"description\":\"Automatically generated by Decap CMS\",\"close_source_branch\":true}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.322195053101", - "Connection": "Keep-Alive", - "X-Request-Count": "1895", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "5261" - }, - "response": "{\"rendered\": {\"description\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \" Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"title\": {\"raw\": \"Create Post “1970-01-01-first-title”\", \"markup\": \"markdown\", \"html\": \"Create Post “1970-01-01-first-title”
\", \"type\": \"rendered\"}}, \"type\": \"pullrequest\", \"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:abe65ef60458%0Db782b50eefc7?from_pullrequest_id=3\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:abe65ef60458%0Db782b50eefc7?from_pullrequest_id=3\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"reviewers\": [], \"id\": 3, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:45:07.073503+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"abe65ef60458\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/abe65ef60458\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/abe65ef60458\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 0, \"state\": \"OPEN\", \"task_count\": 0, \"participants\": [], \"reason\": \"\", \"updated_on\": \"2020-04-12T09:45:07.110170+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}", - "status": 201 - }, - { - "body": "{\"content\":{\"raw\":\"decap-cms/draft\"}}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/3/comments", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/comments/144752527", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.104575157166", - "Connection": "Keep-Alive", - "X-Request-Count": "3075", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1551" - }, - "response": "{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/comments/144752527\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3/_/diff#comment-144752527\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 3, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:45:07.893355+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:45:07.896946+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752527}", - "status": 201 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.107101917267", - "Connection": "Keep-Alive", - "X-Request-Count": "3018", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:abe65ef60458%0Db782b50eefc7?from_pullrequest_id=3\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:abe65ef60458%0Db782b50eefc7?from_pullrequest_id=3\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 3, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:45:07.073503+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"abe65ef60458\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/abe65ef60458\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/abe65ef60458\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:45:07.896946+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/3/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0906510353088", - "Connection": "Keep-Alive", - "X-Request-Count": "2658", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/comments/144752527\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3/_/diff#comment-144752527\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 3, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:45:07.893355+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:45:07.896946+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752527}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/diff/cms/posts/1970-01-01-first-title..master?binary=false", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "must-revalidate, max-age=0", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.133280038834", - "Connection": "Keep-Alive", - "X-Request-Count": "3991", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "409" - }, - "response": "diff --git a/content/posts/1970-01-01-first-title.md b/content/posts/1970-01-01-first-title.md\nnew file mode 100644\nindex 0000000..fbe7d6f\n--- /dev/null\n+++ b/content/posts/1970-01-01-first-title.md\n@@ -0,0 +1,10 @@\n+---\n+template: post\n+title: first title\n+date: 1970-01-01T00:00:00.000Z\n+description: first description\n+category: first category\n+tags:\n+ - tag1\n+---\n+first body\n\\ No newline at end of file\n", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/3/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0933248996735", - "Connection": "Keep-Alive", - "X-Request-Count": "4799", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/comments/144752527\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3/_/diff#comment-144752527\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 3, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:45:07.893355+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:45:07.896946+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752527}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0592458248138", - "Connection": "Keep-Alive", - "X-Request-Count": "146", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3726" - }, - "response": "{\"name\": \"cms/posts/1970-01-01-first-title\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/cms/posts/1970-01-01-first-title\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/cms/posts/1970-01-01-first-title\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"abe65ef604581bf74f9e65278745d568e4127610\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/abe65ef604581bf74f9e65278745d568e4127610\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/abe65ef604581bf74f9e65278745d568e4127610/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/abe65ef604581bf74f9e65278745d568e4127610\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/abe65ef604581bf74f9e65278745d568e4127610\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/abe65ef604581bf74f9e65278745d568e4127610\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/abe65ef604581bf74f9e65278745d568e4127610/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/abe65ef604581bf74f9e65278745d568e4127610/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:45:05+00:00\", \"message\": \"Create Post “1970-01-01-first-title”\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/abe65ef604581bf74f9e65278745d568e4127610/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.064465045929", - "Connection": "Keep-Alive", - "X-Request-Count": "2971", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "154" - }, - "response": "---\ntemplate: post\ntitle: first title\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0841789245605", - "Connection": "Keep-Alive", - "X-Request-Count": "3388", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:abe65ef60458%0Db782b50eefc7?from_pullrequest_id=3\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:abe65ef60458%0Db782b50eefc7?from_pullrequest_id=3\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 3, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:45:07.073503+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \" Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"abe65ef60458\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/abe65ef60458\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/abe65ef60458\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:45:07.896946+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/3/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0883610248566", - "Connection": "Keep-Alive", - "X-Request-Count": "2307", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/comments/144752527\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3/_/diff#comment-144752527\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 3, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:45:07.893355+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:45:07.896946+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752527}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.111569881439", - "Connection": "Keep-Alive", - "X-Request-Count": "1772", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:abe65ef60458%0Db782b50eefc7?from_pullrequest_id=3\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:abe65ef60458%0Db782b50eefc7?from_pullrequest_id=3\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 3, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:45:07.073503+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"abe65ef60458\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/abe65ef60458\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/abe65ef60458\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:45:07.896946+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/3/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0527880191803", - "Connection": "Keep-Alive", - "X-Request-Count": "3014", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/3/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.109370946884", - "Connection": "Keep-Alive", - "X-Request-Count": "4082", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/comments/144752527\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3/_/diff#comment-144752527\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 3, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:45:07.893355+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:45:07.896946+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752527}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "body": "{\"content\":{\"raw\":\"decap-cms/pending_publish\"}}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/3/comments", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/comments/144752531", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.116221904755", - "Connection": "Keep-Alive", - "X-Request-Count": "463", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1571" - }, - "response": "{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/comments/144752531\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3/_/diff#comment-144752531\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 3, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_publish\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_publish
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:45:15.662010+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:45:15.665651+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752531}", - "status": 201 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.103830814362", - "Connection": "Keep-Alive", - "X-Request-Count": "1927", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:abe65ef60458%0Db782b50eefc7?from_pullrequest_id=3\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:abe65ef60458%0Db782b50eefc7?from_pullrequest_id=3\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 3, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:45:07.073503+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"abe65ef60458\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/abe65ef60458\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/abe65ef60458\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 2, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:45:15.665651+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0805730819702", - "Connection": "Keep-Alive", - "X-Request-Count": "3947", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:abe65ef60458%0Db782b50eefc7?from_pullrequest_id=3\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:abe65ef60458%0Db782b50eefc7?from_pullrequest_id=3\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 3, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:45:07.073503+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"abe65ef60458\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/abe65ef60458\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/abe65ef60458\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 2, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:45:15.665651+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/3/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0853698253632", - "Connection": "Keep-Alive", - "X-Request-Count": "1031", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3176" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/comments/144752527\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3/_/diff#comment-144752527\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 3, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:45:07.893355+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:45:07.896946+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752527}, {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/comments/144752531\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3/_/diff#comment-144752531\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 3, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_publish\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_publish
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:45:15.662010+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:45:15.665651+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752531}], \"page\": 1, \"size\": 2}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/3/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.045933008194", - "Connection": "Keep-Alive", - "X-Request-Count": "696", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/3/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.10666513443", - "Connection": "Keep-Alive", - "X-Request-Count": "3100", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3176" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/comments/144752527\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3/_/diff#comment-144752527\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 3, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:45:07.893355+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:45:07.896946+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752527}, {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/comments/144752531\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3/_/diff#comment-144752531\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 3, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_publish\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_publish
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:45:15.662010+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:45:15.665651+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752531}], \"page\": 1, \"size\": 2}", - "status": 200 - }, - { - "body": "{\"message\":\"Automatically generated. Merged on Decap CMS.\",\"close_source_branch\":true,\"merge_strategy\":\"merge_commit\"}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/3/merge", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "1.13511395454", - "Connection": "Keep-Alive", - "X-Request-Count": "1517", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "7910" - }, - "response": "{\"rendered\": {\"description\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"title\": {\"raw\": \"Create Post “1970-01-01-first-title”\", \"markup\": \"markdown\", \"html\": \"Create Post “1970-01-01-first-title”
\", \"type\": \"rendered\"}}, \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:dd5affec4f1d%0Db782b50eefc7?from_pullrequest_id=3\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:dd5affec4f1d%0Db782b50eefc7?from_pullrequest_id=3\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/statuses\"}}, \"close_source_branch\": true, \"reviewers\": [], \"created_on\": \"2020-04-12T09:45:07.073503+00:00\", \"id\": 3, \"closed_on\": \"2020-04-12T09:45:23.885752+00:00\", \"title\": \"Create Post “1970-01-01-first-title”\", \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"comment_count\": 2, \"source\": {\"commit\": {\"hash\": \"abe65ef60458\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/abe65ef60458\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/abe65ef60458\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"state\": \"MERGED\", \"type\": \"pullrequest\", \"description\": \"Automatically generated by Decap CMS\", \"reason\": \"\", \"task_count\": 0, \"merge_commit\": {\"hash\": \"dd5affec4f1d9c29bfc441f6d38914558ca385c2\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/dd5affec4f1d9c29bfc441f6d38914558ca385c2\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/dd5affec4f1d9c29bfc441f6d38914558ca385c2\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"summary\": {\"raw\": \"Automatically generated. Merged on Decap CMS.\\n\", \"markup\": \"markdown\", \"html\": \" Automatically generated. Merged on Decap CMS.
\", \"type\": \"rendered\"}, \"date\": \"2020-04-12T09:45:22+00:00\", \"message\": \"Automatically generated. Merged on Decap CMS.\\n\", \"type\": \"commit\"}, \"closed_by\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"participants\": [{\"role\": \"PARTICIPANT\", \"participated_on\": \"2020-04-12T09:45:15.665651+00:00\", \"type\": \"participant\", \"approved\": false, \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}], \"updated_on\": \"2020-04-12T09:45:23.885764+00:00\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0604600906372", - "Connection": "Keep-Alive", - "X-Request-Count": "4243", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3867" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"dd5affec4f1d9c29bfc441f6d38914558ca385c2\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/dd5affec4f1d9c29bfc441f6d38914558ca385c2\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/dd5affec4f1d9c29bfc441f6d38914558ca385c2/comments\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/dd5affec4f1d9c29bfc441f6d38914558ca385c2\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/dd5affec4f1d9c29bfc441f6d38914558ca385c2\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/dd5affec4f1d9c29bfc441f6d38914558ca385c2/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/dd5affec4f1d9c29bfc441f6d38914558ca385c2/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}, {\"hash\": \"abe65ef604581bf74f9e65278745d568e4127610\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/abe65ef604581bf74f9e65278745d568e4127610\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/abe65ef604581bf74f9e65278745d568e4127610\"}}}], \"date\": \"2020-04-12T09:45:22+00:00\", \"message\": \"Automatically generated. Merged on Decap CMS.\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/dd5affec4f1d9c29bfc441f6d38914558ca385c2/static/media?max_depth=1&pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0675220489502", - "Connection": "Keep-Alive", - "X-Request-Count": "2023", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "78" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: static/media\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0542979240417", - "Connection": "Keep-Alive", - "X-Request-Count": "4726", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3867" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"dd5affec4f1d9c29bfc441f6d38914558ca385c2\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/dd5affec4f1d9c29bfc441f6d38914558ca385c2\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/dd5affec4f1d9c29bfc441f6d38914558ca385c2/comments\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/dd5affec4f1d9c29bfc441f6d38914558ca385c2\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/dd5affec4f1d9c29bfc441f6d38914558ca385c2\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/dd5affec4f1d9c29bfc441f6d38914558ca385c2/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/dd5affec4f1d9c29bfc441f6d38914558ca385c2/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}, {\"hash\": \"abe65ef604581bf74f9e65278745d568e4127610\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/abe65ef604581bf74f9e65278745d568e4127610\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/abe65ef604581bf74f9e65278745d568e4127610\"}}}], \"date\": \"2020-04-12T09:45:22+00:00\", \"message\": \"Automatically generated. Merged on Decap CMS.\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/dd5affec4f1d9c29bfc441f6d38914558ca385c2/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0642621517181", - "Connection": "Keep-Alive", - "X-Request-Count": "3771", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "154" - }, - "response": "---\ntemplate: post\ntitle: first title\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0499551296234", - "Connection": "Keep-Alive", - "X-Request-Count": "700", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - } -] diff --git a/source/admin/cypress/fixtures/BitBucket Backend Editorial Workflow__can update an entry.json b/source/admin/cypress/fixtures/BitBucket Backend Editorial Workflow__can update an entry.json deleted file mode 100644 index adaf7c8..0000000 --- a/source/admin/cypress/fixtures/BitBucket Backend Editorial Workflow__can update an entry.json +++ /dev/null @@ -1,1842 +0,0 @@ -[ - { - "method": "GET", - "url": "/2.0/repositories/owner/repo", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0430769920349", - "Connection": "Keep-Alive", - "X-Request-Count": "4109", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3011" - }, - "response": "{\"scm\": \"git\", \"website\": null, \"has_wiki\": false, \"name\": \"repo\", \"links\": {\"watchers\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/watchers\"}, \"branches\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches\"}, \"tags\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/tags\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits\"}, \"clone\": [{\"href\": \"https://owner@bitbucket.org/owner/repo.git\", \"name\": \"https\"}, {\"href\": \"git@bitbucket.org:owner/repo.git\", \"name\": \"ssh\"}], \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"source\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/src\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}, \"hooks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/hooks\"}, \"forks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/forks\"}, \"downloads\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/downloads\"}, \"pullrequests\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests\"}}, \"fork_policy\": \"allow_forks\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\", \"language\": \"\", \"created_on\": \"2020-04-12T09:43:06.141832+00:00\", \"mainbranch\": {\"type\": \"branch\", \"name\": \"master\"}, \"full_name\": \"owner/repo\", \"has_issues\": false, \"owner\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:44:01.551568+00:00\", \"size\": 4282777, \"type\": \"repository\", \"slug\": \"repo\", \"is_private\": false, \"description\": \"\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/user", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0309910774231", - "X-Accepted-OAuth-Scopes": "account", - "Connection": "Keep-Alive", - "X-Version": "e1ce49ad4aa3", - "X-Request-Count": "3299", - "X-Frame-Options": "SAMEORIGIN", - "content-length": "1041" - }, - "response": "{\"name\":\"owner\",\"display_name\":\"owner\",\"links\":{\"avatar\":{\"href\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\"}},\"nickname\":\"owner\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0624389648438", - "Connection": "Keep-Alive", - "X-Request-Count": "919", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.048492193222", - "Connection": "Keep-Alive", - "X-Request-Count": "878", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/static/media?max_depth=1&pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0364859104156", - "Connection": "Keep-Alive", - "X-Request-Count": "743", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "78" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: static/media\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0676250457764", - "Connection": "Keep-Alive", - "X-Request-Count": "2018", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts?max_depth=1&pagelen=20", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0453200340271", - "Connection": "Keep-Alive", - "X-Request-Count": "3934", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "6396" - }, - "response": "{\"pagelen\":20,\"values\":[{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"}},\"path\":\"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":1707},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"}},\"path\":\"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2565},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"}},\"path\":\"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2786},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"}},\"path\":\"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":16071},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"}},\"path\":\"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":7465}],\"page\":1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0484511852264", - "Connection": "Keep-Alive", - "X-Request-Count": "3111", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1707" - }, - "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0503661632538", - "Connection": "Keep-Alive", - "X-Request-Count": "4451", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2786" - }, - "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n \n\t \n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0378849506378", - "Connection": "Keep-Alive", - "X-Request-Count": "2979", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2565" - }, - "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n\n\t\t\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.
\n\t\t\n\t\n\t \n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.112061023712", - "Connection": "Keep-Alive", - "X-Request-Count": "3068", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-02-02---A-Brief-History-of-Typography.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.114732027054", - "Connection": "Keep-Alive", - "X-Request-Count": "4033", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.117233037949", - "Connection": "Keep-Alive", - "X-Request-Count": "4225", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0389280319214", - "Connection": "Keep-Alive", - "X-Request-Count": "3507", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "16071" - }, - "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western worldâs first major printed books, the âFortyâTwoâLineâ Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western worldâs first major printed books, the âFortyâTwoâLineâ Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 â 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n\n\t \n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information â including revolutionary ideas â transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a âsecretâ. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439â1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him âlike a ray of lightâ.\n\n\n\t
Johannes Gutenberg \n\n\t \n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fustâs son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n\n\t
Early wooden printing press as depicted in 1568. \n\n\t \n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454â55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the FustâSchöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the GutenbergâFust shop might have employed as many as 25 craftsmen.\n\n\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of âmovable typeâ.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n\n\t\t\nAll that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to followâyour grace would be able to read it without effort, and indeed without glasses.
\n\t\t\n\t\n\t \n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in âcuneiformâ style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that âthe decisive factor for the birth of typographyâ, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0498871803284", - "Connection": "Keep-Alive", - "X-Request-Count": "4781", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "7465" - }, - "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didnât mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other â the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n\n\n*The 42âLine Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But itâs the third transition that stripped it naked. Typefaces are faceless these days. Theyâre just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the âright oneâ is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\nâ Massimo Vignelli\n\nTypography is not about typefaces. Itâs not about what looks best, itâs about what feels right. What communicates the message best. Typography, in its essence, is about the message. âTypographical design should perform optically what the speaker creates through voice and gesture of his thoughts.â, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because itâs a safe option. Itâs always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still donât spot it in the street.\n\n\n\t\t\nIt is a press, certainly, but a press from which shall flow in inexhaustible streams⦠Through it, god will spread his word.
\n\t\t\n\t\n\t \n\nTypefaces donât look handmade these days. And thatâs all right. They donât have to. Industrialism took that away from them and weâre fine with it. Weâve traded that part of humanity for a process that produces more books that are easier to read. That canât be bad. And it isnât.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> â Eric Gill\n\nWeâve come close to âperfectionâ in the last five centuries. The letters are crisp and without rough edges. We print our compositions with highâprecision printers on a high quality, machine made paper.\n\n\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we donât care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. Thereâs no meaning in our work. Type sizes, leading, margins⦠Itâs all just a few clicks or lines of code. The message isnât important anymore. Thereâs no more âwhyâ behind the âwhatâ.\n\n## Chasing perfection\n\nHuman beings arenât perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.10596704483", - "Connection": "Keep-Alive", - "X-Request-Count": "2703", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nKnowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2017-18-08---The-Birth-of-Movable-Type.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.106771945953", - "Connection": "Keep-Alive", - "X-Request-Count": "2870", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0545670986176", - "Connection": "Keep-Alive", - "X-Request-Count": "3291", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name ~ \"cms/\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0541100502014", - "Connection": "Keep-Alive", - "X-Request-Count": "4984", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0508239269257", - "Connection": "Keep-Alive", - "X-Request-Count": "2344", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0396630764008", - "Connection": "Keep-Alive", - "X-Request-Count": "830", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "105" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: content/posts/1970-01-01-first-title.md\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0556828975677", - "Connection": "Keep-Alive", - "X-Request-Count": "4097", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/.gitattributes", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0444228649139", - "Connection": "Keep-Alive", - "X-Request-Count": "3194", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "136" - }, - "response": "/.github export-ignore\n/.gitattributes export-ignore\n/.editorconfig export-ignore\n/.travis.yml export-ignore\n**/*.js.snap export-ignore\n", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.046893119812", - "Connection": "Keep-Alive", - "X-Request-Count": "4807", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "body": "------WebKitFormBoundary5nymM3nSCBAlzIXw\r\nContent-Disposition: form-data; name=\"content/posts/1970-01-01-first-title.md\"; filename=\"1970-01-01-first-title.md\"\r\nContent-Type: application/octet-stream\r\n\r\n---\ntemplate: post\ntitle: first title\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\r\n------WebKitFormBoundary5nymM3nSCBAlzIXw\r\nContent-Disposition: form-data; name=\"message\"\r\n\r\nCreate Post â1970-01-01-first-titleâ\r\n------WebKitFormBoundary5nymM3nSCBAlzIXw\r\nContent-Disposition: form-data; name=\"branch\"\r\n\r\ncms/posts/1970-01-01-first-title\r\n------WebKitFormBoundary5nymM3nSCBAlzIXw\r\nContent-Disposition: form-data; name=\"parents\"\r\n\r\nb782b50eefc7d6f6482ac989eb5c9142d5abfa37\r\n------WebKitFormBoundary5nymM3nSCBAlzIXw--\r\n", - "method": "POST", - "url": "/2.0/repositories/owner/repo/src", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "text/html; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f9237cb8cea78f75ba023f794f847974ae82bc95", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.422342061996", - "Connection": "Keep-Alive", - "X-Request-Count": "3297", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "0" - }, - "response": null, - "status": 201 - }, - { - "body": "{\"title\":\"Create Post “1970-01-01-first-title”\",\"source\":{\"branch\":{\"name\":\"cms/posts/1970-01-01-first-title\"}},\"destination\":{\"branch\":{\"name\":\"master\"}},\"description\":\"Automatically generated by Decap CMS\",\"close_source_branch\":true}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.275713920593", - "Connection": "Keep-Alive", - "X-Request-Count": "2303", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "5261" - }, - "response": "{\"rendered\": {\"description\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \" Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"title\": {\"raw\": \"Create Post “1970-01-01-first-title”\", \"markup\": \"markdown\", \"html\": \"Create Post “1970-01-01-first-title”
\", \"type\": \"rendered\"}}, \"type\": \"pullrequest\", \"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:f9237cb8cea7%0Db782b50eefc7?from_pullrequest_id=2\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:f9237cb8cea7%0Db782b50eefc7?from_pullrequest_id=2\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"reviewers\": [], \"id\": 2, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:44:20.694898+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"f9237cb8cea7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f9237cb8cea7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/f9237cb8cea7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 0, \"state\": \"OPEN\", \"task_count\": 0, \"participants\": [], \"reason\": \"\", \"updated_on\": \"2020-04-12T09:44:20.734906+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}", - "status": 201 - }, - { - "body": "{\"content\":{\"raw\":\"decap-cms/draft\"}}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/2/comments", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/comments/144752513", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0887122154236", - "Connection": "Keep-Alive", - "X-Request-Count": "2083", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1551" - }, - "response": "{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/comments/144752513\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2/_/diff#comment-144752513\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 2, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:44:21.527561+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:44:21.529730+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752513}", - "status": 201 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0776989459991", - "Connection": "Keep-Alive", - "X-Request-Count": "1166", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:f9237cb8cea7%0Db782b50eefc7?from_pullrequest_id=2\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:f9237cb8cea7%0Db782b50eefc7?from_pullrequest_id=2\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 2, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:44:20.694898+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"f9237cb8cea7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f9237cb8cea7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/f9237cb8cea7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:44:21.529730+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/2/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0820331573486", - "Connection": "Keep-Alive", - "X-Request-Count": "3948", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/comments/144752513\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2/_/diff#comment-144752513\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 2, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:44:21.527561+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:44:21.529730+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752513}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/diff/cms/posts/1970-01-01-first-title..master?binary=false", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "must-revalidate, max-age=0", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.128727912903", - "Connection": "Keep-Alive", - "X-Request-Count": "442", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "409" - }, - "response": "diff --git a/content/posts/1970-01-01-first-title.md b/content/posts/1970-01-01-first-title.md\nnew file mode 100644\nindex 0000000..fbe7d6f\n--- /dev/null\n+++ b/content/posts/1970-01-01-first-title.md\n@@ -0,0 +1,10 @@\n+---\n+template: post\n+title: first title\n+date: 1970-01-01T00:00:00.000Z\n+description: first description\n+category: first category\n+tags:\n+ - tag1\n+---\n+first body\n\\ No newline at end of file\n", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/2/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.100577831268", - "Connection": "Keep-Alive", - "X-Request-Count": "3493", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/comments/144752513\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2/_/diff#comment-144752513\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 2, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:44:21.527561+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:44:21.529730+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752513}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0580728054047", - "Connection": "Keep-Alive", - "X-Request-Count": "1910", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3726" - }, - "response": "{\"name\": \"cms/posts/1970-01-01-first-title\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/cms/posts/1970-01-01-first-title\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/cms/posts/1970-01-01-first-title\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"f9237cb8cea78f75ba023f794f847974ae82bc95\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f9237cb8cea78f75ba023f794f847974ae82bc95\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f9237cb8cea78f75ba023f794f847974ae82bc95/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/f9237cb8cea78f75ba023f794f847974ae82bc95\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/f9237cb8cea78f75ba023f794f847974ae82bc95\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/f9237cb8cea78f75ba023f794f847974ae82bc95\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f9237cb8cea78f75ba023f794f847974ae82bc95/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f9237cb8cea78f75ba023f794f847974ae82bc95/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:44:19+00:00\", \"message\": \"Create Post “1970-01-01-first-title”\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/f9237cb8cea78f75ba023f794f847974ae82bc95/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0540060997009", - "Connection": "Keep-Alive", - "X-Request-Count": "690", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "154" - }, - "response": "---\ntemplate: post\ntitle: first title\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0789291858673", - "Connection": "Keep-Alive", - "X-Request-Count": "3963", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:f9237cb8cea7%0Db782b50eefc7?from_pullrequest_id=2\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:f9237cb8cea7%0Db782b50eefc7?from_pullrequest_id=2\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 2, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:44:20.694898+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \" Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"f9237cb8cea7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f9237cb8cea7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/f9237cb8cea7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:44:21.529730+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0811541080475", - "Connection": "Keep-Alive", - "X-Request-Count": "466", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:f9237cb8cea7%0Db782b50eefc7?from_pullrequest_id=2\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:f9237cb8cea7%0Db782b50eefc7?from_pullrequest_id=2\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 2, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:44:20.694898+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"f9237cb8cea7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f9237cb8cea7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/f9237cb8cea7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:44:21.529730+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/2/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0904879570007", - "Connection": "Keep-Alive", - "X-Request-Count": "22", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/comments/144752513\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2/_/diff#comment-144752513\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 2, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:44:21.527561+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:44:21.529730+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752513}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0970058441162", - "Connection": "Keep-Alive", - "X-Request-Count": "282", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:f9237cb8cea7%0Db782b50eefc7?from_pullrequest_id=2\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:f9237cb8cea7%0Db782b50eefc7?from_pullrequest_id=2\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 2, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:44:20.694898+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"f9237cb8cea7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f9237cb8cea7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/f9237cb8cea7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:44:21.529730+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/2/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0411698818207", - "Connection": "Keep-Alive", - "X-Request-Count": "1850", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/2/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0773031711578", - "Connection": "Keep-Alive", - "X-Request-Count": "207", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/comments/144752513\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2/_/diff#comment-144752513\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 2, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:44:21.527561+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:44:21.529730+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752513}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/2/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0461008548737", - "Connection": "Keep-Alive", - "X-Request-Count": "2701", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/2/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0753171443939", - "Connection": "Keep-Alive", - "X-Request-Count": "2077", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/comments/144752513\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2/_/diff#comment-144752513\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 2, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:44:21.527561+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:44:21.529730+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752513}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/diff/cms/posts/1970-01-01-first-title..master?binary=false", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "must-revalidate, max-age=0", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.125154972076", - "Connection": "Keep-Alive", - "X-Request-Count": "2732", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "409" - }, - "response": "diff --git a/content/posts/1970-01-01-first-title.md b/content/posts/1970-01-01-first-title.md\nnew file mode 100644\nindex 0000000..fbe7d6f\n--- /dev/null\n+++ b/content/posts/1970-01-01-first-title.md\n@@ -0,0 +1,10 @@\n+---\n+template: post\n+title: first title\n+date: 1970-01-01T00:00:00.000Z\n+description: first description\n+category: first category\n+tags:\n+ - tag1\n+---\n+first body\n\\ No newline at end of file\n", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/2/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0808889865875", - "Connection": "Keep-Alive", - "X-Request-Count": "950", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/comments/144752513\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2/_/diff#comment-144752513\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 2, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:44:21.527561+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:44:21.529730+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752513}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0605478286743", - "Connection": "Keep-Alive", - "X-Request-Count": "42", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3726" - }, - "response": "{\"name\": \"cms/posts/1970-01-01-first-title\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/cms/posts/1970-01-01-first-title\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/cms/posts/1970-01-01-first-title\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"f9237cb8cea78f75ba023f794f847974ae82bc95\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f9237cb8cea78f75ba023f794f847974ae82bc95\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f9237cb8cea78f75ba023f794f847974ae82bc95/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/f9237cb8cea78f75ba023f794f847974ae82bc95\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/f9237cb8cea78f75ba023f794f847974ae82bc95\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/f9237cb8cea78f75ba023f794f847974ae82bc95\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f9237cb8cea78f75ba023f794f847974ae82bc95/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f9237cb8cea78f75ba023f794f847974ae82bc95/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:44:19+00:00\", \"message\": \"Create Post “1970-01-01-first-title”\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/f9237cb8cea78f75ba023f794f847974ae82bc95/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0539200305939", - "Connection": "Keep-Alive", - "X-Request-Count": "3558", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "154" - }, - "response": "---\ntemplate: post\ntitle: first title\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0941698551178", - "Connection": "Keep-Alive", - "X-Request-Count": "1030", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:f9237cb8cea7%0Db782b50eefc7?from_pullrequest_id=2\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:f9237cb8cea7%0Db782b50eefc7?from_pullrequest_id=2\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 2, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:44:20.694898+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \" Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"f9237cb8cea7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f9237cb8cea7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/f9237cb8cea7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:44:21.529730+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/2/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0783059597015", - "Connection": "Keep-Alive", - "X-Request-Count": "1009", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/comments/144752513\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2/_/diff#comment-144752513\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 2, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:44:21.527561+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:44:21.529730+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752513}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0936510562897", - "Connection": "Keep-Alive", - "X-Request-Count": "3552", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:f9237cb8cea7%0Db782b50eefc7?from_pullrequest_id=2\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:f9237cb8cea7%0Db782b50eefc7?from_pullrequest_id=2\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 2, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:44:20.694898+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"f9237cb8cea7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f9237cb8cea7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/f9237cb8cea7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:44:21.529730+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/2/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0466978549957", - "Connection": "Keep-Alive", - "X-Request-Count": "3393", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/2/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.096296787262", - "Connection": "Keep-Alive", - "X-Request-Count": "1048", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/comments/144752513\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2/_/diff#comment-144752513\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 2, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:44:21.527561+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:44:21.529730+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752513}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0888679027557", - "Connection": "Keep-Alive", - "X-Request-Count": "2462", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:f9237cb8cea7%0Db782b50eefc7?from_pullrequest_id=2\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:f9237cb8cea7%0Db782b50eefc7?from_pullrequest_id=2\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 2, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:44:20.694898+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"f9237cb8cea7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f9237cb8cea7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/f9237cb8cea7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:44:21.529730+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/2/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0416660308838", - "Connection": "Keep-Alive", - "X-Request-Count": "2165", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/2/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0741550922394", - "Connection": "Keep-Alive", - "X-Request-Count": "4381", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/comments/144752513\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2/_/diff#comment-144752513\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 2, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:44:21.527561+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:44:21.529730+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752513}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/2/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0374960899353", - "Connection": "Keep-Alive", - "X-Request-Count": "1698", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/diff/cms/posts/1970-01-01-first-title..master?binary=false", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "must-revalidate, max-age=0", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.102365016937", - "Connection": "Keep-Alive", - "X-Request-Count": "2991", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "409" - }, - "response": "diff --git a/content/posts/1970-01-01-first-title.md b/content/posts/1970-01-01-first-title.md\nnew file mode 100644\nindex 0000000..fbe7d6f\n--- /dev/null\n+++ b/content/posts/1970-01-01-first-title.md\n@@ -0,0 +1,10 @@\n+---\n+template: post\n+title: first title\n+date: 1970-01-01T00:00:00.000Z\n+description: first description\n+category: first category\n+tags:\n+ - tag1\n+---\n+first body\n\\ No newline at end of file\n", - "status": 200 - }, - { - "body": "------WebKitFormBoundaryed4ihajxT768G7zh\r\nContent-Disposition: form-data; name=\"content/posts/1970-01-01-first-title.md\"; filename=\"1970-01-01-first-title.md\"\r\nContent-Type: application/octet-stream\r\n\r\n---\ntemplate: post\ntitle: second title\ndate: 1970-01-01T00:00:00.000Z\ndescription: second description\ncategory: second category\ntags:\n - tag2\n---\nsecond body\r\n------WebKitFormBoundaryed4ihajxT768G7zh\r\nContent-Disposition: form-data; name=\"message\"\r\n\r\nUpdate Post â1970-01-01-first-titleâ\r\n------WebKitFormBoundaryed4ihajxT768G7zh\r\nContent-Disposition: form-data; name=\"branch\"\r\n\r\ncms/posts/1970-01-01-first-title\r\n------WebKitFormBoundaryed4ihajxT768G7zh--\r\n", - "method": "POST", - "url": "/2.0/repositories/owner/repo/src", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "text/html; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/commit/a1597ec448e37b0b075367dceb58a5a129d5282b", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.498876094818", - "Connection": "Keep-Alive", - "X-Request-Count": "1248", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "0" - }, - "response": null, - "status": 201 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.11114692688", - "Connection": "Keep-Alive", - "X-Request-Count": "3638", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:a1597ec448e3%0Db782b50eefc7?from_pullrequest_id=2\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:a1597ec448e3%0Db782b50eefc7?from_pullrequest_id=2\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 2, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:44:20.694898+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"a1597ec448e3\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/a1597ec448e3\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/a1597ec448e3\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:44:38.629543+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/2/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0798659324646", - "Connection": "Keep-Alive", - "X-Request-Count": "2501", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/comments/144752513\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2/_/diff#comment-144752513\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 2, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:44:21.527561+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:44:21.529730+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752513}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0845367908478", - "Connection": "Keep-Alive", - "X-Request-Count": "1748", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:a1597ec448e3%0Db782b50eefc7?from_pullrequest_id=2\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:a1597ec448e3%0Db782b50eefc7?from_pullrequest_id=2\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 2, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:44:20.694898+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"a1597ec448e3\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/a1597ec448e3\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/a1597ec448e3\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:44:38.629543+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/2/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.038507938385", - "Connection": "Keep-Alive", - "X-Request-Count": "465", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/2/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0826358795166", - "Connection": "Keep-Alive", - "X-Request-Count": "4739", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/comments/144752513\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2/_/diff#comment-144752513\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 2, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:44:21.527561+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:44:21.529730+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752513}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0852658748627", - "Connection": "Keep-Alive", - "X-Request-Count": "4898", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:a1597ec448e3%0Db782b50eefc7?from_pullrequest_id=2\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:a1597ec448e3%0Db782b50eefc7?from_pullrequest_id=2\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 2, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:44:20.694898+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"a1597ec448e3\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/a1597ec448e3\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/a1597ec448e3\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:44:38.629543+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/2/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0502820014954", - "Connection": "Keep-Alive", - "X-Request-Count": "3965", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/2/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0821270942688", - "Connection": "Keep-Alive", - "X-Request-Count": "2406", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/comments/144752513\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2/_/diff#comment-144752513\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 2, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:44:21.527561+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:44:21.529730+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752513}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.102944135666", - "Connection": "Keep-Alive", - "X-Request-Count": "3816", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:a1597ec448e3%0Db782b50eefc7?from_pullrequest_id=2\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:a1597ec448e3%0Db782b50eefc7?from_pullrequest_id=2\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 2, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:44:20.694898+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"a1597ec448e3\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/a1597ec448e3\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/a1597ec448e3\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:44:38.629543+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/2/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0342860221863", - "Connection": "Keep-Alive", - "X-Request-Count": "3959", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/2/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0880250930786", - "Connection": "Keep-Alive", - "X-Request-Count": "611", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2/comments/144752513\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2/_/diff#comment-144752513\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 2, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/2\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/2\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:44:21.527561+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:44:21.529730+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752513}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/2/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.048975944519", - "Connection": "Keep-Alive", - "X-Request-Count": "1072", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0537049770355", - "Connection": "Keep-Alive", - "X-Request-Count": "2493", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0572550296783", - "Connection": "Keep-Alive", - "X-Request-Count": "360", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - } -] diff --git a/source/admin/cypress/fixtures/BitBucket Backend Editorial Workflow__can update workflow status from within the editor.json b/source/admin/cypress/fixtures/BitBucket Backend Editorial Workflow__can update workflow status from within the editor.json deleted file mode 100644 index 40110c8..0000000 --- a/source/admin/cypress/fixtures/BitBucket Backend Editorial Workflow__can update workflow status from within the editor.json +++ /dev/null @@ -1,1269 +0,0 @@ -[ - { - "method": "GET", - "url": "/2.0/repositories/owner/repo", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0459949970245", - "Connection": "Keep-Alive", - "X-Request-Count": "4122", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3011" - }, - "response": "{\"scm\": \"git\", \"website\": null, \"has_wiki\": false, \"name\": \"repo\", \"links\": {\"watchers\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/watchers\"}, \"branches\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches\"}, \"tags\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/tags\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits\"}, \"clone\": [{\"href\": \"https://owner@bitbucket.org/owner/repo.git\", \"name\": \"https\"}, {\"href\": \"git@bitbucket.org:owner/repo.git\", \"name\": \"ssh\"}], \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"source\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/src\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}, \"hooks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/hooks\"}, \"forks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/forks\"}, \"downloads\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/downloads\"}, \"pullrequests\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests\"}}, \"fork_policy\": \"allow_forks\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\", \"language\": \"\", \"created_on\": \"2020-04-12T09:43:06.141832+00:00\", \"mainbranch\": {\"type\": \"branch\", \"name\": \"master\"}, \"full_name\": \"owner/repo\", \"has_issues\": false, \"owner\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:49:10.565549+00:00\", \"size\": 4459965, \"type\": \"repository\", \"slug\": \"repo\", \"is_private\": false, \"description\": \"\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/user", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0343840122223", - "X-Accepted-OAuth-Scopes": "account", - "Connection": "Keep-Alive", - "X-Request-Count": "2612", - "X-Version": "e1ce49ad4aa3", - "X-Frame-Options": "SAMEORIGIN", - "content-length": "1041" - }, - "response": "{\"name\":\"owner\",\"display_name\":\"owner\",\"links\":{\"avatar\":{\"href\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\"}},\"nickname\":\"owner\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0622959136963", - "Connection": "Keep-Alive", - "X-Request-Count": "4048", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/static/media?max_depth=1&pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0381779670715", - "Connection": "Keep-Alive", - "X-Request-Count": "406", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "78" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: static/media\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0593769550323", - "Connection": "Keep-Alive", - "X-Request-Count": "1350", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0745639801025", - "Connection": "Keep-Alive", - "X-Request-Count": "4897", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts?max_depth=1&pagelen=20", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0400040149689", - "Connection": "Keep-Alive", - "X-Request-Count": "4059", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "6396" - }, - "response": "{\"pagelen\":20,\"values\":[{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"}},\"path\":\"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":1707},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"}},\"path\":\"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2565},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"}},\"path\":\"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2786},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"}},\"path\":\"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":16071},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"}},\"path\":\"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":7465}],\"page\":1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0335431098938", - "Connection": "Keep-Alive", - "X-Request-Count": "1586", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2565" - }, - "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n \n\t \n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0487661361694", - "Connection": "Keep-Alive", - "X-Request-Count": "394", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1707" - }, - "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.101245164871", - "Connection": "Keep-Alive", - "X-Request-Count": "4735", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.120899915695", - "Connection": "Keep-Alive", - "X-Request-Count": "3885", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0437529087067", - "Connection": "Keep-Alive", - "X-Request-Count": "3729", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2786" - }, - "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n\n\t \n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-02-02---A-Brief-History-of-Typography.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0966079235077", - "Connection": "Keep-Alive", - "X-Request-Count": "4358", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0442700386047", - "Connection": "Keep-Alive", - "X-Request-Count": "1081", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "16071" - }, - "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western worldâs first major printed books, the âFortyâTwoâLineâ Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western worldâs first major printed books, the âFortyâTwoâLineâ Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 â 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n\n\t \n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information â including revolutionary ideas â transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a âsecretâ. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439â1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him âlike a ray of lightâ.\n\n\n\t
Johannes Gutenberg \n\n\t \n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fustâs son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n\n\t
Early wooden printing press as depicted in 1568. \n\n\t \n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454â55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the FustâSchöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the GutenbergâFust shop might have employed as many as 25 craftsmen.\n\n\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of âmovable typeâ.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n\n\t\t\nAll that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to followâyour grace would be able to read it without effort, and indeed without glasses.
\n\t\t\n\t\n\t \n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in âcuneiformâ style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that âthe decisive factor for the birth of typographyâ, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0399560928345", - "Connection": "Keep-Alive", - "X-Request-Count": "2533", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "7465" - }, - "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didnât mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other â the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n\n\n*The 42âLine Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But itâs the third transition that stripped it naked. Typefaces are faceless these days. Theyâre just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the âright oneâ is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\nâ Massimo Vignelli\n\nTypography is not about typefaces. Itâs not about what looks best, itâs about what feels right. What communicates the message best. Typography, in its essence, is about the message. âTypographical design should perform optically what the speaker creates through voice and gesture of his thoughts.â, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because itâs a safe option. Itâs always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still donât spot it in the street.\n\n\n\t\t\nIt is a press, certainly, but a press from which shall flow in inexhaustible streams⦠Through it, god will spread his word.
\n\t\t\n\t\n\t \n\nTypefaces donât look handmade these days. And thatâs all right. They donât have to. Industrialism took that away from them and weâre fine with it. Weâve traded that part of humanity for a process that produces more books that are easier to read. That canât be bad. And it isnât.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> â Eric Gill\n\nWeâve come close to âperfectionâ in the last five centuries. The letters are crisp and without rough edges. We print our compositions with highâprecision printers on a high quality, machine made paper.\n\n\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we donât care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. Thereâs no meaning in our work. Type sizes, leading, margins⦠Itâs all just a few clicks or lines of code. The message isnât important anymore. Thereâs no more âwhyâ behind the âwhatâ.\n\n## Chasing perfection\n\nHuman beings arenât perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2017-18-08---The-Birth-of-Movable-Type.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0929889678955", - "Connection": "Keep-Alive", - "X-Request-Count": "3485", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nKnowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.108286142349", - "Connection": "Keep-Alive", - "X-Request-Count": "2024", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name ~ \"cms/\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0482342243195", - "Connection": "Keep-Alive", - "X-Request-Count": "3303", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0444951057434", - "Connection": "Keep-Alive", - "X-Request-Count": "491", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.06418800354", - "Connection": "Keep-Alive", - "X-Request-Count": "4206", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0354020595551", - "Connection": "Keep-Alive", - "X-Request-Count": "1384", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "105" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: content/posts/1970-01-01-first-title.md\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0546059608459", - "Connection": "Keep-Alive", - "X-Request-Count": "3504", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/.gitattributes", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0617260932922", - "Connection": "Keep-Alive", - "X-Request-Count": "4581", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "136" - }, - "response": "/.github export-ignore\n/.gitattributes export-ignore\n/.editorconfig export-ignore\n/.travis.yml export-ignore\n**/*.js.snap export-ignore\n", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0510270595551", - "Connection": "Keep-Alive", - "X-Request-Count": "4787", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "body": "------WebKitFormBoundary99TiEih0h2Q3Ra4c\r\nContent-Disposition: form-data; name=\"content/posts/1970-01-01-first-title.md\"; filename=\"1970-01-01-first-title.md\"\r\nContent-Type: application/octet-stream\r\n\r\n---\ntemplate: post\ntitle: first title\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\r\n------WebKitFormBoundary99TiEih0h2Q3Ra4c\r\nContent-Disposition: form-data; name=\"message\"\r\n\r\nCreate Post â1970-01-01-first-titleâ\r\n------WebKitFormBoundary99TiEih0h2Q3Ra4c\r\nContent-Disposition: form-data; name=\"branch\"\r\n\r\ncms/posts/1970-01-01-first-title\r\n------WebKitFormBoundary99TiEih0h2Q3Ra4c\r\nContent-Disposition: form-data; name=\"parents\"\r\n\r\nb782b50eefc7d6f6482ac989eb5c9142d5abfa37\r\n------WebKitFormBoundary99TiEih0h2Q3Ra4c--\r\n", - "method": "POST", - "url": "/2.0/repositories/owner/repo/src", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "text/html; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2a14b1b5edcccbf6ca371c4a6e7eff3f1daefe01", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.444180965424", - "Connection": "Keep-Alive", - "X-Request-Count": "1359", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "0" - }, - "response": null, - "status": 201 - }, - { - "body": "{\"title\":\"Create Post “1970-01-01-first-title”\",\"source\":{\"branch\":{\"name\":\"cms/posts/1970-01-01-first-title\"}},\"destination\":{\"branch\":{\"name\":\"master\"}},\"description\":\"Automatically generated by Decap CMS\",\"close_source_branch\":true}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.233916044235", - "Connection": "Keep-Alive", - "X-Request-Count": "2129", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "5261" - }, - "response": "{\"rendered\": {\"description\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \" Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"title\": {\"raw\": \"Create Post “1970-01-01-first-title”\", \"markup\": \"markdown\", \"html\": \"Create Post “1970-01-01-first-title”
\", \"type\": \"rendered\"}}, \"type\": \"pullrequest\", \"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:2a14b1b5edcc%0Db782b50eefc7?from_pullrequest_id=9\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/9\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:2a14b1b5edcc%0Db782b50eefc7?from_pullrequest_id=9\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"reviewers\": [], \"id\": 9, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:49:36.759416+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"2a14b1b5edcc\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2a14b1b5edcc\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2a14b1b5edcc\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 0, \"state\": \"OPEN\", \"task_count\": 0, \"participants\": [], \"reason\": \"\", \"updated_on\": \"2020-04-12T09:49:36.787732+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}", - "status": 201 - }, - { - "body": "{\"content\":{\"raw\":\"decap-cms/draft\"}}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/9/comments", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/comments/144752606", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0943939685822", - "Connection": "Keep-Alive", - "X-Request-Count": "574", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1551" - }, - "response": "{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/comments/144752606\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/9/_/diff#comment-144752606\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 9, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/9\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:49:37.578922+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:49:37.581147+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752606}", - "status": 201 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.106642007828", - "Connection": "Keep-Alive", - "X-Request-Count": "1431", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:2a14b1b5edcc%0Db782b50eefc7?from_pullrequest_id=9\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/9\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:2a14b1b5edcc%0Db782b50eefc7?from_pullrequest_id=9\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 9, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:49:36.759416+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"2a14b1b5edcc\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2a14b1b5edcc\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2a14b1b5edcc\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:49:37.581147+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/9/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0806410312653", - "Connection": "Keep-Alive", - "X-Request-Count": "1124", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/comments/144752606\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/9/_/diff#comment-144752606\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 9, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/9\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:49:37.578922+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:49:37.581147+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752606}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/diff/cms/posts/1970-01-01-first-title..master?binary=false", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "must-revalidate, max-age=0", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.106416940689", - "Connection": "Keep-Alive", - "X-Request-Count": "754", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "409" - }, - "response": "diff --git a/content/posts/1970-01-01-first-title.md b/content/posts/1970-01-01-first-title.md\nnew file mode 100644\nindex 0000000..fbe7d6f\n--- /dev/null\n+++ b/content/posts/1970-01-01-first-title.md\n@@ -0,0 +1,10 @@\n+---\n+template: post\n+title: first title\n+date: 1970-01-01T00:00:00.000Z\n+description: first description\n+category: first category\n+tags:\n+ - tag1\n+---\n+first body\n\\ No newline at end of file\n", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/9/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0785660743713", - "Connection": "Keep-Alive", - "X-Request-Count": "2384", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/comments/144752606\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/9/_/diff#comment-144752606\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 9, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/9\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:49:37.578922+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:49:37.581147+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752606}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0617969036102", - "Connection": "Keep-Alive", - "X-Request-Count": "3813", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3726" - }, - "response": "{\"name\": \"cms/posts/1970-01-01-first-title\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/cms/posts/1970-01-01-first-title\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/cms/posts/1970-01-01-first-title\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"2a14b1b5edcccbf6ca371c4a6e7eff3f1daefe01\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2a14b1b5edcccbf6ca371c4a6e7eff3f1daefe01\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2a14b1b5edcccbf6ca371c4a6e7eff3f1daefe01/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2a14b1b5edcccbf6ca371c4a6e7eff3f1daefe01\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2a14b1b5edcccbf6ca371c4a6e7eff3f1daefe01\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2a14b1b5edcccbf6ca371c4a6e7eff3f1daefe01\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2a14b1b5edcccbf6ca371c4a6e7eff3f1daefe01/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2a14b1b5edcccbf6ca371c4a6e7eff3f1daefe01/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:49:35+00:00\", \"message\": \"Create Post “1970-01-01-first-title”\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/2a14b1b5edcccbf6ca371c4a6e7eff3f1daefe01/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0563869476318", - "Connection": "Keep-Alive", - "X-Request-Count": "2885", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "154" - }, - "response": "---\ntemplate: post\ntitle: first title\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0784859657288", - "Connection": "Keep-Alive", - "X-Request-Count": "884", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:2a14b1b5edcc%0Db782b50eefc7?from_pullrequest_id=9\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/9\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:2a14b1b5edcc%0Db782b50eefc7?from_pullrequest_id=9\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 9, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:49:36.759416+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \" Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"2a14b1b5edcc\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2a14b1b5edcc\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2a14b1b5edcc\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:49:37.581147+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0784840583801", - "Connection": "Keep-Alive", - "X-Request-Count": "510", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:2a14b1b5edcc%0Db782b50eefc7?from_pullrequest_id=9\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/9\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:2a14b1b5edcc%0Db782b50eefc7?from_pullrequest_id=9\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 9, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:49:36.759416+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"2a14b1b5edcc\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2a14b1b5edcc\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2a14b1b5edcc\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:49:37.581147+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/9/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0836389064789", - "Connection": "Keep-Alive", - "X-Request-Count": "3523", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/comments/144752606\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/9/_/diff#comment-144752606\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 9, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/9\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:49:37.578922+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:49:37.581147+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752606}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/9/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0365328788757", - "Connection": "Keep-Alive", - "X-Request-Count": "586", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/9/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0779781341553", - "Connection": "Keep-Alive", - "X-Request-Count": "941", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/comments/144752606\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/9/_/diff#comment-144752606\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 9, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/9\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:49:37.578922+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:49:37.581147+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752606}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "body": "{\"content\":{\"raw\":\"decap-cms/pending_review\"}}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/9/comments", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/comments/144752609", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0880432128906", - "Connection": "Keep-Alive", - "X-Request-Count": "4098", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1569" - }, - "response": "{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/comments/144752609\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/9/_/diff#comment-144752609\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 9, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/9\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_review\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_review
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:49:44.949105+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:49:44.951455+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752609}", - "status": 201 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0818967819214", - "Connection": "Keep-Alive", - "X-Request-Count": "4041", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:2a14b1b5edcc%0Db782b50eefc7?from_pullrequest_id=9\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/9\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:2a14b1b5edcc%0Db782b50eefc7?from_pullrequest_id=9\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 9, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:49:36.759416+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"2a14b1b5edcc\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2a14b1b5edcc\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2a14b1b5edcc\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 2, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:49:44.951455+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/9/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.114121198654", - "Connection": "Keep-Alive", - "X-Request-Count": "3803", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3174" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/comments/144752606\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/9/_/diff#comment-144752606\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 9, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/9\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:49:37.578922+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:49:37.581147+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752606}, {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/comments/144752609\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/9/_/diff#comment-144752609\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 9, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/9\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_review\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_review
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:49:44.949105+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:49:44.951455+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752609}], \"page\": 1, \"size\": 2}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0980570316315", - "Connection": "Keep-Alive", - "X-Request-Count": "2457", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:2a14b1b5edcc%0Db782b50eefc7?from_pullrequest_id=9\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/9\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:2a14b1b5edcc%0Db782b50eefc7?from_pullrequest_id=9\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 9, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:49:36.759416+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"2a14b1b5edcc\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2a14b1b5edcc\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2a14b1b5edcc\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 2, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:49:44.951455+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/9/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0378971099854", - "Connection": "Keep-Alive", - "X-Request-Count": "4053", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/9/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0982739925385", - "Connection": "Keep-Alive", - "X-Request-Count": "3309", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3174" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/comments/144752606\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/9/_/diff#comment-144752606\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 9, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/9\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:49:37.578922+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:49:37.581147+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752606}, {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/comments/144752609\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/9/_/diff#comment-144752609\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 9, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/9\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_review\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_review
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:49:44.949105+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:49:44.951455+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752609}], \"page\": 1, \"size\": 2}", - "status": 200 - }, - { - "body": "{\"content\":{\"raw\":\"decap-cms/pending_publish\"}}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/9/comments", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/comments/144752613", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.109216928482", - "Connection": "Keep-Alive", - "X-Request-Count": "1328", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1571" - }, - "response": "{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/comments/144752613\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/9/_/diff#comment-144752613\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 9, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/9\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_publish\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_publish
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:49:52.520933+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:49:52.523607+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752613}", - "status": 201 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0803420543671", - "Connection": "Keep-Alive", - "X-Request-Count": "2888", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:2a14b1b5edcc%0Db782b50eefc7?from_pullrequest_id=9\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/9\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:2a14b1b5edcc%0Db782b50eefc7?from_pullrequest_id=9\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 9, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:49:36.759416+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"2a14b1b5edcc\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2a14b1b5edcc\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2a14b1b5edcc\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 3, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:49:52.523607+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/9/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.124178886414", - "Connection": "Keep-Alive", - "X-Request-Count": "4118", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4747" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/comments/144752606\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/9/_/diff#comment-144752606\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 9, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/9\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:49:37.578922+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:49:37.581147+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752606}, {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/comments/144752609\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/9/_/diff#comment-144752609\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 9, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/9\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_review\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_review
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:49:44.949105+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:49:44.951455+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752609}, {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9/comments/144752613\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/9/_/diff#comment-144752613\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 9, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/9\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/9\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_publish\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_publish
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:49:52.520933+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:49:52.523607+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752613}], \"page\": 1, \"size\": 3}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/9/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.048504114151", - "Connection": "Keep-Alive", - "X-Request-Count": "168", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - } -] diff --git a/source/admin/cypress/fixtures/BitBucket Backend Editorial Workflow__successfully loads.json b/source/admin/cypress/fixtures/BitBucket Backend Editorial Workflow__successfully loads.json deleted file mode 100644 index eeae995..0000000 --- a/source/admin/cypress/fixtures/BitBucket Backend Editorial Workflow__successfully loads.json +++ /dev/null @@ -1,185 +0,0 @@ -[ - { - "method": "GET", - "url": "/2.0/repositories/owner/repo", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0400168895721", - "Connection": "Keep-Alive", - "X-Request-Count": "3792", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3011" - }, - "response": "{\"scm\": \"git\", \"website\": null, \"has_wiki\": false, \"name\": \"repo\", \"links\": {\"watchers\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/watchers\"}, \"branches\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches\"}, \"tags\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/tags\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits\"}, \"clone\": [{\"href\": \"https://owner@bitbucket.org/owner/repo.git\", \"name\": \"https\"}, {\"href\": \"git@bitbucket.org:owner/repo.git\", \"name\": \"ssh\"}], \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"source\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/src\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}, \"hooks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/hooks\"}, \"forks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/forks\"}, \"downloads\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/downloads\"}, \"pullrequests\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests\"}}, \"fork_policy\": \"allow_forks\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\", \"language\": \"\", \"created_on\": \"2020-04-12T09:43:06.141832+00:00\", \"mainbranch\": {\"type\": \"branch\", \"name\": \"master\"}, \"full_name\": \"owner/repo\", \"has_issues\": false, \"owner\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:43:21.808525+00:00\", \"size\": 4282777, \"type\": \"repository\", \"slug\": \"repo\", \"is_private\": false, \"description\": \"\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/user", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0336480140686", - "X-Accepted-OAuth-Scopes": "account", - "Connection": "Keep-Alive", - "X-Version": "e1ce49ad4aa3", - "X-Request-Count": "3392", - "X-Frame-Options": "SAMEORIGIN", - "content-length": "1041" - }, - "response": "{\"name\":\"owner\",\"display_name\":\"owner\",\"links\":{\"avatar\":{\"href\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\"}},\"nickname\":\"owner\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0609841346741", - "Connection": "Keep-Alive", - "X-Request-Count": "4077", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/static/media?max_depth=1&pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.052433013916", - "Connection": "Keep-Alive", - "X-Request-Count": "2833", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "78" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: static/media\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0851039886475", - "Connection": "Keep-Alive", - "X-Request-Count": "1587", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0558838844299", - "Connection": "Keep-Alive", - "X-Request-Count": "1259", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bcc1da263-9f3b-41f1-95d8-4ad5402c0ffd%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{cc1da263-9f3b-41f1-95d8-4ad5402c0ffd}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts?max_depth=1&pagelen=20", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0454139709473", - "Connection": "Keep-Alive", - "X-Request-Count": "77", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "6396" - }, - "response": "{\"pagelen\":20,\"values\":[{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"}},\"path\":\"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":1707},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"}},\"path\":\"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2565},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"}},\"path\":\"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2786},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"}},\"path\":\"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":16071},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"}},\"path\":\"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":7465}],\"page\":1}", - "status": 200 - } -] \ No newline at end of file diff --git a/source/admin/cypress/fixtures/BitBucket Backend Media Library - Large Media__can delete image from global media library.json b/source/admin/cypress/fixtures/BitBucket Backend Media Library - Large Media__can delete image from global media library.json deleted file mode 100644 index 21ac902..0000000 --- a/source/admin/cypress/fixtures/BitBucket Backend Media Library - Large Media__can delete image from global media library.json +++ /dev/null @@ -1,644 +0,0 @@ -[ - { - "method": "GET", - "url": "/2.0/repositories/owner/repo", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0478518009186", - "Connection": "Keep-Alive", - "X-Request-Count": "3710", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2995" - }, - "response": "{\"scm\": \"git\", \"website\": null, \"has_wiki\": false, \"name\": \"repo\", \"links\": {\"watchers\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/watchers\"}, \"branches\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches\"}, \"tags\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/tags\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits\"}, \"clone\": [{\"href\": \"https://owner@bitbucket.org/owner/repo.git\", \"name\": \"https\"}, {\"href\": \"git@bitbucket.org:owner/repo.git\", \"name\": \"ssh\"}], \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"source\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/src\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}, \"hooks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/hooks\"}, \"forks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/forks\"}, \"downloads\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/downloads\"}, \"pullrequests\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests\"}}, \"fork_policy\": \"allow_forks\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\", \"language\": \"\", \"created_on\": \"2020-04-12T09:50:32.743342+00:00\", \"mainbranch\": {\"type\": \"branch\", \"name\": \"master\"}, \"full_name\": \"owner/repo\", \"has_issues\": false, \"owner\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:51:27.836873+00:00\", \"size\": 4282777, \"type\": \"repository\", \"slug\": \"repo\", \"is_private\": false, \"description\": \"\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/user", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0290939807892", - "X-Accepted-OAuth-Scopes": "account", - "Connection": "Keep-Alive", - "X-Request-Count": "334", - "X-Version": "e1ce49ad4aa3", - "X-Frame-Options": "SAMEORIGIN", - "content-length": "1041" - }, - "response": "{\"name\":\"owner\",\"display_name\":\"owner\",\"links\":{\"avatar\":{\"href\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\"}},\"nickname\":\"owner\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0474081039429", - "Connection": "Keep-Alive", - "X-Request-Count": "1972", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3039" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/statuses\"}}, \"author\": {\"raw\": \"ownerkah \", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:50:53+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/static/media?max_depth=1&pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.046135187149", - "Connection": "Keep-Alive", - "X-Request-Count": "3087", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "78" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: static/media\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0444459915161", - "Connection": "Keep-Alive", - "X-Request-Count": "1128", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3039" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/statuses\"}}, \"author\": {\"raw\": \"ownerkah \", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:50:53+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0392310619354", - "Connection": "Keep-Alive", - "X-Request-Count": "4147", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3039" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/statuses\"}}, \"author\": {\"raw\": \"ownerkah \", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:50:53+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/.gitattributes", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0401599407196", - "Connection": "Keep-Alive", - "X-Request-Count": "3973", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "220" - }, - "response": "/.github export-ignore\n/.gitattributes export-ignore\n/.editorconfig export-ignore\n/.travis.yml export-ignore\n**/*.js.snap export-ignore\n*.png filter=lfs diff=lfs merge=lfs -text\n*.jpg filter=lfs diff=lfs merge=lfs -text\n", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0493628978729", - "Connection": "Keep-Alive", - "X-Request-Count": "2422", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3039" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/statuses\"}}, \"author\": {\"raw\": \"ownerkah \", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:50:53+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts?max_depth=1&pagelen=20", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0458002090454", - "Connection": "Keep-Alive", - "X-Request-Count": "2418", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "6371" - }, - "response": "{\"pagelen\":20,\"values\":[{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"}},\"path\":\"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"53eb7709cda173b8c923b4bef2a51a1ce49d14af\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":1707},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"}},\"path\":\"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"53eb7709cda173b8c923b4bef2a51a1ce49d14af\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2565},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-02-02---A-Brief-History-of-Typography.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"}},\"path\":\"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"53eb7709cda173b8c923b4bef2a51a1ce49d14af\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2786},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"}},\"path\":\"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"53eb7709cda173b8c923b4bef2a51a1ce49d14af\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":16071},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"}},\"path\":\"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"53eb7709cda173b8c923b4bef2a51a1ce49d14af\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":7465}],\"page\":1}", - "status": 200 - }, - { - "body": "{\"operation\":\"upload\",\"transfers\":[\"basic\"],\"objects\":[{\"size\":3470,\"oid\":\"b1d40c19b912d2130d1bed8ff1a62a55c7d932978502e1d8559eb77951c5e8d3\"}]}", - "method": "POST", - "url": "/owner/repo/info/lfs/objects/batch", - "headers": { - "bbr1private": "0", - "bbr1wikiprivate": "0", - "Server": "nginx", - "Vary": "Authorization", - "bbr1repouuid": "97c5226e-9ffb-42c4-948d-3d785a9d0c46", - "Cache-Control": "no-cache", - "Content-Type": "application/vnd.git-lfs+json", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "X-Usage-Output-Ops": "0", - "bbr1reposlug": "repo", - "bbr1hasadmin": "1", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "bbr1scm": "git", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Usage-User-Time": "0.037442", - "X-Usage-System-Time": "0.009602", - "bbuserid": "6965054", - "bbauthhash": "", - "X-Served-By": "app-135", - "X-Consumer-Client-Id": "ATfdeqkMFdgQA3S8Tr", - "bbr1ownerid": "6965054", - "bbr1hasread": "1", - "bbr1issuesprivate": "0", - "bbr1haswrite": "1", - "bbr1size": "4282777", - "X-Usage-Throttled": "True", - "Access-Control-Allow-Origin": "*", - "X-View-Name": "bitbucket.apps.lfs.clientapi.batch.ObjectsBatchHandler", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0631959438324", - "Connection": "Keep-Alive", - "bbusername": "owner", - "X-Token-Id": "47401645", - "X-Usage-Input-Ops": "0", - "X-Request-Count": "2231", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "bbr1owner": "owner", - "Content-Length": "104", - "bbr1id": "64027664" - }, - "response": "{\"objects\": [{\"oid\": \"b1d40c19b912d2130d1bed8ff1a62a55c7d932978502e1d8559eb77951c5e8d3\", \"size\": 3470}]}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0299470424652", - "Connection": "Keep-Alive", - "X-Request-Count": "4057", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1707" - }, - "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-02-02---A-Brief-History-of-Typography.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0303959846497", - "Connection": "Keep-Alive", - "X-Request-Count": "3202", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2786" - }, - "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n \n\t \n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0339660644531", - "Connection": "Keep-Alive", - "X-Request-Count": "679", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2565" - }, - "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n\n\t\t\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.
\n\t\t\n\t\n\t \n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.129132032394", - "Connection": "Keep-Alive", - "X-Request-Count": "545", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-02-02---A-Brief-History-of-Typography.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.10692191124", - "Connection": "Keep-Alive", - "X-Request-Count": "3224", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.130092144012", - "Connection": "Keep-Alive", - "X-Request-Count": "968", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-18-08---The-Birth-of-Movable-Type.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0409491062164", - "Connection": "Keep-Alive", - "X-Request-Count": "1024", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "16071" - }, - "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western worldâs first major printed books, the âFortyâTwoâLineâ Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western worldâs first major printed books, the âFortyâTwoâLineâ Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 â 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n\n\t \n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information â including revolutionary ideas â transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a âsecretâ. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439â1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him âlike a ray of lightâ.\n\n\n\t
Johannes Gutenberg \n\n\t \n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fustâs son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n\n\t
Early wooden printing press as depicted in 1568. \n\n\t \n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454â55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the FustâSchöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the GutenbergâFust shop might have employed as many as 25 craftsmen.\n\n\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of âmovable typeâ.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n\n\t\t\nAll that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to followâyour grace would be able to read it without effort, and indeed without glasses.
\n\t\t\n\t\n\t \n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in âcuneiformâ style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that âthe decisive factor for the birth of typographyâ, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2017-18-08---The-Birth-of-Movable-Type.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.10061788559", - "Connection": "Keep-Alive", - "X-Request-Count": "2979", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nIt is a press, certainly, but a press from which shall flow in inexhaustible streams⦠Through it, god will spread his word.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0336420536041", - "Connection": "Keep-Alive", - "X-Request-Count": "181", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "7465" - }, - "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didnât mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other â the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n\n\n*The 42âLine Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But itâs the third transition that stripped it naked. Typefaces are faceless these days. Theyâre just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the âright oneâ is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\nâ Massimo Vignelli\n\nTypography is not about typefaces. Itâs not about what looks best, itâs about what feels right. What communicates the message best. Typography, in its essence, is about the message. âTypographical design should perform optically what the speaker creates through voice and gesture of his thoughts.â, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because itâs a safe option. Itâs always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still donât spot it in the street.\n\n\n\t \n\nTypefaces donât look handmade these days. And thatâs all right. They donât have to. Industrialism took that away from them and weâre fine with it. Weâve traded that part of humanity for a process that produces more books that are easier to read. That canât be bad. And it isnât.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> â Eric Gill\n\nWeâve come close to âperfectionâ in the last five centuries. The letters are crisp and without rough edges. We print our compositions with highâprecision printers on a high quality, machine made paper.\n\n\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we donât care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. Thereâs no meaning in our work. Type sizes, leading, margins⦠Itâs all just a few clicks or lines of code. The message isnât important anymore. Thereâs no more âwhyâ behind the âwhatâ.\n\n## Chasing perfection\n\nHuman beings arenât perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.120907068253", - "Connection": "Keep-Alive", - "X-Request-Count": "5021", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nKnowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "body": "------WebKitFormBoundarylqeaNOpGJEYhUJbZ\r\nContent-Disposition: form-data; name=\"static/media/netlify.png\"; filename=\"netlify.png\"\r\nContent-Type: text/plain\r\n\r\nversion https://git-lfs.github.com/spec/v1\noid sha256:b1d40c19b912d2130d1bed8ff1a62a55c7d932978502e1d8559eb77951c5e8d3\nsize 3470\n\r\n------WebKitFormBoundarylqeaNOpGJEYhUJbZ\r\nContent-Disposition: form-data; name=\"message\"\r\n\r\nUpload âstatic/media/netlify.pngâ\r\n------WebKitFormBoundarylqeaNOpGJEYhUJbZ\r\nContent-Disposition: form-data; name=\"branch\"\r\n\r\nmaster\r\n------WebKitFormBoundarylqeaNOpGJEYhUJbZ--\r\n", - "method": "POST", - "url": "/2.0/repositories/owner/repo/src", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "text/html; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/commit/54a396fc55de7085e06ad69751df39af4a6acf86", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.487749099731", - "Connection": "Keep-Alive", - "X-Request-Count": "4405", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "0" - }, - "response": null, - "status": 201 - }, - { - "body": "------WebKitFormBoundaryhs3SJxnMEnlXGn8L\r\nContent-Disposition: form-data; name=\"files\"\r\n\r\nstatic/media/netlify.png\r\n------WebKitFormBoundaryhs3SJxnMEnlXGn8L\r\nContent-Disposition: form-data; name=\"branch\"\r\n\r\nmaster\r\n------WebKitFormBoundaryhs3SJxnMEnlXGn8L\r\nContent-Disposition: form-data; name=\"message\"\r\n\r\nDelete âstatic/media/netlify.pngâ\r\n------WebKitFormBoundaryhs3SJxnMEnlXGn8L--\r\n", - "method": "POST", - "url": "/2.0/repositories/owner/repo/src", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "text/html; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/commit/8cb4be3acf9360e8c5ad2796ca2fe2bc169cb178", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.41299700737", - "Connection": "Keep-Alive", - "X-Request-Count": "2456", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "0" - }, - "response": null, - "status": 201 - }, - { - "body": "{\"ref\":{\"name\":\"refs/heads/master\"}}", - "method": "POST", - "url": "/owner/repo.git/info/lfs/locks/verify", - "headers": { - "Server": "nginx", - "Cache-Control": "no-cache", - "Content-Type": "text/html", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "X-Usage-Output-Ops": "0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Usage-User-Time": "0.297260", - "X-Usage-System-Time": "0.030434", - "bbuserid": "6965054", - "bbauthhash": "85825d9e95e23cd03a5fd66443596e6bee282889", - "X-Served-By": "app-163", - "X-Consumer-Client-Id": "ATfdeqkMFdgQA3S8Tr", - "X-Usage-Throttled": "True", - "X-Static-Version": "e1ce49ad4aa3", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.341689109802", - "Connection": "Keep-Alive", - "X-Token-Id": "47401645", - "bbusername": "owner", - "X-Usage-Input-Ops": "0", - "X-Version": "e1ce49ad4aa3", - "X-Request-Count": "1056", - "X-Frame-Options": "SAMEORIGIN", - "content-length": "77" - }, - "response": "Not Found
The requested resource was not found on this server.
", - "status": 404 - } -] diff --git a/source/admin/cypress/fixtures/BitBucket Backend Media Library - Large Media__can publish entry with image.json b/source/admin/cypress/fixtures/BitBucket Backend Media Library - Large Media__can publish entry with image.json deleted file mode 100644 index 9b0f00a..0000000 --- a/source/admin/cypress/fixtures/BitBucket Backend Media Library - Large Media__can publish entry with image.json +++ /dev/null @@ -1,1573 +0,0 @@ -[ - { - "method": "GET", - "url": "/2.0/repositories/owner/repo", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0521581172943", - "Connection": "Keep-Alive", - "X-Request-Count": "1130", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3011" - }, - "response": "{\"scm\": \"git\", \"website\": null, \"has_wiki\": false, \"name\": \"repo\", \"links\": {\"watchers\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/watchers\"}, \"branches\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches\"}, \"tags\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/tags\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits\"}, \"clone\": [{\"href\": \"https://owner@bitbucket.org/owner/repo.git\", \"name\": \"https\"}, {\"href\": \"git@bitbucket.org:owner/repo.git\", \"name\": \"ssh\"}], \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"source\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/src\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B17d2cda6-a30f-431a-8387-8c6d8bacc1b5%7D?ts=default\"}, \"hooks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/hooks\"}, \"forks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/forks\"}, \"downloads\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/downloads\"}, \"pullrequests\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests\"}}, \"fork_policy\": \"allow_forks\", \"uuid\": \"{17d2cda6-a30f-431a-8387-8c6d8bacc1b5}\", \"language\": \"\", \"created_on\": \"2020-04-12T13:17:34.002958+00:00\", \"mainbranch\": {\"type\": \"branch\", \"name\": \"master\"}, \"full_name\": \"owner/repo\", \"has_issues\": false, \"owner\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T13:17:55.861886+00:00\", \"size\": 4289079, \"type\": \"repository\", \"slug\": \"repo\", \"is_private\": false, \"description\": \"\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/user", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0336928367615", - "X-Accepted-OAuth-Scopes": "account", - "Connection": "Keep-Alive", - "X-Version": "e1ce49ad4aa3", - "X-Request-Count": "250", - "X-Frame-Options": "SAMEORIGIN", - "content-length": "1041" - }, - "response": "{\"name\":\"owner\",\"display_name\":\"owner\",\"links\":{\"avatar\":{\"href\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\"}},\"nickname\":\"owner\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0630309581757", - "Connection": "Keep-Alive", - "X-Request-Count": "2123", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3055" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"adde53c90097304295810fc7b94b724a165b5354\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B17d2cda6-a30f-431a-8387-8c6d8bacc1b5%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{17d2cda6-a30f-431a-8387-8c6d8bacc1b5}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097304295810fc7b94b724a165b5354\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097304295810fc7b94b724a165b5354/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/adde53c90097304295810fc7b94b724a165b5354\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/adde53c90097304295810fc7b94b724a165b5354\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/adde53c90097304295810fc7b94b724a165b5354\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097304295810fc7b94b724a165b5354/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097304295810fc7b94b724a165b5354/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T13:17:51+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/adde53c90097304295810fc7b94b724a165b5354/static/media?max_depth=1&pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0527679920197", - "Connection": "Keep-Alive", - "X-Request-Count": "3966", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "78" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: static/media\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0556640625", - "Connection": "Keep-Alive", - "X-Request-Count": "668", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3055" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"adde53c90097304295810fc7b94b724a165b5354\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B17d2cda6-a30f-431a-8387-8c6d8bacc1b5%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{17d2cda6-a30f-431a-8387-8c6d8bacc1b5}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097304295810fc7b94b724a165b5354\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097304295810fc7b94b724a165b5354/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/adde53c90097304295810fc7b94b724a165b5354\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/adde53c90097304295810fc7b94b724a165b5354\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/adde53c90097304295810fc7b94b724a165b5354\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097304295810fc7b94b724a165b5354/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097304295810fc7b94b724a165b5354/statuses\"}}, \"author\": {\"raw\": \"ownerkah \", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T13:17:51+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.057345867157", - "Connection": "Keep-Alive", - "X-Request-Count": "541", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3055" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"adde53c90097304295810fc7b94b724a165b5354\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B17d2cda6-a30f-431a-8387-8c6d8bacc1b5%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{17d2cda6-a30f-431a-8387-8c6d8bacc1b5}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097304295810fc7b94b724a165b5354\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097304295810fc7b94b724a165b5354/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/adde53c90097304295810fc7b94b724a165b5354\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/adde53c90097304295810fc7b94b724a165b5354\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/adde53c90097304295810fc7b94b724a165b5354\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097304295810fc7b94b724a165b5354/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097304295810fc7b94b724a165b5354/statuses\"}}, \"author\": {\"raw\": \"ownerkah \", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T13:17:51+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/adde53c90097304295810fc7b94b724a165b5354/content/posts?max_depth=1&pagelen=20", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0716989040375", - "Connection": "Keep-Alive", - "X-Request-Count": "2671", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "6396" - }, - "response": "{\"pagelen\":20,\"values\":[{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/adde53c90097304295810fc7b94b724a165b5354/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/adde53c90097304295810fc7b94b724a165b5354/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/adde53c90097304295810fc7b94b724a165b5354/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"}},\"path\":\"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"adde53c90097304295810fc7b94b724a165b5354\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097304295810fc7b94b724a165b5354\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/adde53c90097304295810fc7b94b724a165b5354\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":1707},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/adde53c90097304295810fc7b94b724a165b5354/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/adde53c90097304295810fc7b94b724a165b5354/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/adde53c90097304295810fc7b94b724a165b5354/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"}},\"path\":\"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"adde53c90097304295810fc7b94b724a165b5354\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097304295810fc7b94b724a165b5354\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/adde53c90097304295810fc7b94b724a165b5354\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2565},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/adde53c90097304295810fc7b94b724a165b5354/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/adde53c90097304295810fc7b94b724a165b5354/content/posts/2016-02-02---A-Brief-History-of-Typography.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/adde53c90097304295810fc7b94b724a165b5354/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"}},\"path\":\"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"adde53c90097304295810fc7b94b724a165b5354\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097304295810fc7b94b724a165b5354\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/adde53c90097304295810fc7b94b724a165b5354\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2786},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/adde53c90097304295810fc7b94b724a165b5354/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/adde53c90097304295810fc7b94b724a165b5354/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/adde53c90097304295810fc7b94b724a165b5354/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"}},\"path\":\"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"adde53c90097304295810fc7b94b724a165b5354\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097304295810fc7b94b724a165b5354\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/adde53c90097304295810fc7b94b724a165b5354\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":16071},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/adde53c90097304295810fc7b94b724a165b5354/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/adde53c90097304295810fc7b94b724a165b5354/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/adde53c90097304295810fc7b94b724a165b5354/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"}},\"path\":\"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"adde53c90097304295810fc7b94b724a165b5354\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097304295810fc7b94b724a165b5354\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/adde53c90097304295810fc7b94b724a165b5354\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":7465}],\"page\":1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/adde53c90097304295810fc7b94b724a165b5354/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0518062114716", - "Connection": "Keep-Alive", - "X-Request-Count": "3405", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1707" - }, - "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/adde53c90097304295810fc7b94b724a165b5354/content/posts/2017-18-08---The-Birth-of-Movable-Type.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0398831367493", - "Connection": "Keep-Alive", - "X-Request-Count": "3073", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "16071" - }, - "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western worldâs first major printed books, the âFortyâTwoâLineâ Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western worldâs first major printed books, the âFortyâTwoâLineâ Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 â 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n \n\t \n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information â including revolutionary ideas â transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a âsecretâ. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439â1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him âlike a ray of lightâ.\n\n\n\t
Johannes Gutenberg \n\n\t \n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fustâs son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n\n\t
Early wooden printing press as depicted in 1568. \n\n\t \n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454â55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the FustâSchöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the GutenbergâFust shop might have employed as many as 25 craftsmen.\n\n\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of âmovable typeâ.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n\n\t\t\nAll that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to followâyour grace would be able to read it without effort, and indeed without glasses.
\n\t\t\n\t\n\t \n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in âcuneiformâ style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that âthe decisive factor for the birth of typographyâ, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/adde53c90097304295810fc7b94b724a165b5354/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0514209270477", - "Connection": "Keep-Alive", - "X-Request-Count": "3048", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2565" - }, - "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n\n\t\t\nIt is a press, certainly, but a press from which shall flow in inexhaustible streams⦠Through it, god will spread his word.
\n\t\t\n\t\n\t \n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/adde53c90097304295810fc7b94b724a165b5354/content/posts/2016-02-02---A-Brief-History-of-Typography.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0344560146332", - "Connection": "Keep-Alive", - "X-Request-Count": "447", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2786" - }, - "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n\n\t\t\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.
\n\t\t\n\t\n\t \n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.130553007126", - "Connection": "Keep-Alive", - "X-Request-Count": "3281", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B17d2cda6-a30f-431a-8387-8c6d8bacc1b5%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{17d2cda6-a30f-431a-8387-8c6d8bacc1b5}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.101644039154", - "Connection": "Keep-Alive", - "X-Request-Count": "10", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B17d2cda6-a30f-431a-8387-8c6d8bacc1b5%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{17d2cda6-a30f-431a-8387-8c6d8bacc1b5}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/adde53c90097304295810fc7b94b724a165b5354/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0692660808563", - "Connection": "Keep-Alive", - "X-Request-Count": "806", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "7465" - }, - "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didnât mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other â the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n\n\n*The 42âLine Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But itâs the third transition that stripped it naked. Typefaces are faceless these days. Theyâre just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the âright oneâ is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\nâ Massimo Vignelli\n\nTypography is not about typefaces. Itâs not about what looks best, itâs about what feels right. What communicates the message best. Typography, in its essence, is about the message. âTypographical design should perform optically what the speaker creates through voice and gesture of his thoughts.â, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because itâs a safe option. Itâs always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still donât spot it in the street.\n\n\n\t \n\nTypefaces donât look handmade these days. And thatâs all right. They donât have to. Industrialism took that away from them and weâre fine with it. Weâve traded that part of humanity for a process that produces more books that are easier to read. That canât be bad. And it isnât.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> â Eric Gill\n\nWeâve come close to âperfectionâ in the last five centuries. The letters are crisp and without rough edges. We print our compositions with highâprecision printers on a high quality, machine made paper.\n\n\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we donât care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. Thereâs no meaning in our work. Type sizes, leading, margins⦠Itâs all just a few clicks or lines of code. The message isnât important anymore. Thereâs no more âwhyâ behind the âwhatâ.\n\n## Chasing perfection\n\nHuman beings arenât perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-02-02---A-Brief-History-of-Typography.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.1078748703", - "Connection": "Keep-Alive", - "X-Request-Count": "1315", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nKnowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B17d2cda6-a30f-431a-8387-8c6d8bacc1b5%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{17d2cda6-a30f-431a-8387-8c6d8bacc1b5}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.115949869156", - "Connection": "Keep-Alive", - "X-Request-Count": "5038", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B17d2cda6-a30f-431a-8387-8c6d8bacc1b5%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{17d2cda6-a30f-431a-8387-8c6d8bacc1b5}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2017-18-08---The-Birth-of-Movable-Type.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.133944988251", - "Connection": "Keep-Alive", - "X-Request-Count": "4515", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B17d2cda6-a30f-431a-8387-8c6d8bacc1b5%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{17d2cda6-a30f-431a-8387-8c6d8bacc1b5}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name ~ \"cms/\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0587260723114", - "Connection": "Keep-Alive", - "X-Request-Count": "1031", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0571360588074", - "Connection": "Keep-Alive", - "X-Request-Count": "4547", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0446960926056", - "Connection": "Keep-Alive", - "X-Request-Count": "1229", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3055" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"adde53c90097304295810fc7b94b724a165b5354\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B17d2cda6-a30f-431a-8387-8c6d8bacc1b5%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{17d2cda6-a30f-431a-8387-8c6d8bacc1b5}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097304295810fc7b94b724a165b5354\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097304295810fc7b94b724a165b5354/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/adde53c90097304295810fc7b94b724a165b5354\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/adde53c90097304295810fc7b94b724a165b5354\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/adde53c90097304295810fc7b94b724a165b5354\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097304295810fc7b94b724a165b5354/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097304295810fc7b94b724a165b5354/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T13:17:51+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/adde53c90097304295810fc7b94b724a165b5354/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.074658870697", - "Connection": "Keep-Alive", - "X-Request-Count": "728", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "105" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: content/posts/1970-01-01-first-title.md\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0568330287933", - "Connection": "Keep-Alive", - "X-Request-Count": "3561", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3055" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"adde53c90097304295810fc7b94b724a165b5354\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B17d2cda6-a30f-431a-8387-8c6d8bacc1b5%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{17d2cda6-a30f-431a-8387-8c6d8bacc1b5}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097304295810fc7b94b724a165b5354\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097304295810fc7b94b724a165b5354/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/adde53c90097304295810fc7b94b724a165b5354\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/adde53c90097304295810fc7b94b724a165b5354\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/adde53c90097304295810fc7b94b724a165b5354\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097304295810fc7b94b724a165b5354/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097304295810fc7b94b724a165b5354/statuses\"}}, \"author\": {\"raw\": \"ownerkah \", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T13:17:51+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/adde53c90097304295810fc7b94b724a165b5354/.gitattributes", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.05619597435", - "Connection": "Keep-Alive", - "X-Request-Count": "2038", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "220" - }, - "response": "/.github export-ignore\n/.gitattributes export-ignore\n/.editorconfig export-ignore\n/.travis.yml export-ignore\n**/*.js.snap export-ignore\n*.png filter=lfs diff=lfs merge=lfs -text\n*.jpg filter=lfs diff=lfs merge=lfs -text\n", - "status": 200 - }, - { - "body": "{\"operation\":\"upload\",\"transfers\":[\"basic\"],\"objects\":[{\"size\":3470,\"oid\":\"b1d40c19b912d2130d1bed8ff1a62a55c7d932978502e1d8559eb77951c5e8d3\"}]}", - "method": "POST", - "url": "/owner/repo/info/lfs/objects/batch", - "headers": { - "bbr1private": "0", - "bbr1wikiprivate": "0", - "Server": "nginx", - "Vary": "Authorization", - "bbr1repouuid": "17d2cda6-a30f-431a-8387-8c6d8bacc1b5", - "Cache-Control": "no-cache", - "Content-Type": "application/vnd.git-lfs+json", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "X-Usage-Output-Ops": "0", - "bbr1reposlug": "repo", - "bbr1hasadmin": "1", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "bbr1scm": "git", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Usage-User-Time": "0.055366", - "X-Usage-System-Time": "0.000465", - "bbuserid": "6965054", - "bbauthhash": "", - "X-Served-By": "app-135", - "X-Consumer-Client-Id": "ATfdeqkMFdgQA3S8Tr", - "bbr1ownerid": "6965054", - "bbr1hasread": "1", - "bbr1issuesprivate": "0", - "bbr1haswrite": "1", - "bbr1size": "4289079", - "Access-Control-Allow-Origin": "*", - "X-View-Name": "bitbucket.apps.lfs.clientapi.batch.ObjectsBatchHandler", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.375055789948", - "Connection": "Keep-Alive", - "bbusername": "owner", - "X-Token-Id": "47401645", - "X-Usage-Input-Ops": "0", - "X-Request-Count": "1149", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "bbr1owner": "owner", - "Content-Length": "889", - "bbr1id": "64033171" - }, - "response": "{\"objects\": [{\"oid\": \"b1d40c19b912d2130d1bed8ff1a62a55c7d932978502e1d8559eb77951c5e8d3\", \"actions\": {\"verify\": {\"href\": \"https://bitbucket.org/%7B%7D/%7B17d2cda6-a30f-431a-8387-8c6d8bacc1b5%7D/info/lfs/object/verify?upload_id=4a500b49-fe07-48d1-822e-923f378dfc8d\"}, \"upload\": {\"header\": {\"X-Client-ID\": \"46305acb-bece-48e9-9d62-d41541b0fc95\", \"Authorization\": \"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0NjMwNWFjYi1iZWNlLTQ4ZTktOWQ2Mi1kNDE1NDFiMGZjOTUiLCJhY2Nlc3MiOnsidXJuOmZpbGVzdG9yZTp1cGxvYWQ6NGE1MDBiNDktZmUwNy00OGQxLTgyMmUtOTIzZjM3OGRmYzhkIjpbInVwZGF0ZSIsImNyZWF0ZSJdLCJ1cm46ZmlsZXN0b3JlOmNodW5rOioiOlsicmVhZCIsImNyZWF0ZSJdfSwibmJmIjoxNTg2Njk3NDM2LCJleHAiOjE1ODY3MDEwMzZ9.c2cyrrHuDykRLiijB14FfSkCR-W914SbW7W2qiyfJDY\"}, \"href\": \"https://api.media.atlassian.com/upload/4a500b49-fe07-48d1-822e-923f378dfc8d/binary?hashAlgorithm=sha256\", \"expires_in\": 3480}}, \"size\": 3470}]}", - "status": 200 - }, - { - "body": { - "encoding": "base64", - "content": "iVBORw0KGgoAAAANSUhEUgAAAJcAAACXCAMAAAAvQTlLAAAAwFBMVEX///85rbswtrpAp71DpL03sLs8q7xGob4tubkzs7o+qLwqvLknv7gkwrgpvbhIn75Mm7/x+vrs9fhktcfn9/bg8PMtp7lSr8IWw7U7yL3Y7vAAq7JSzMM+w75MwMGj2dxmv8iLx9O73ORcrMRorMeJ2tJr1MlTx8N8z8+45uWs4OBQu8HH5ulTuMMXqbaW0Ndxvsuq1t4jnrd6ss2TwNUwj7ii4tzP8Ox00syR19ZkxseByNCezdnP5Ox2tsyDv9FhQXEFAAAMiUlEQVR4nO2ci1biyBaGDTcBUaxAEjuoQLQHEQhJ2j7TCLTv/1anau8kdU3wwsW1zvlnVg9UKlVf/r1rVyFjn539X6cSOTWASf2f/9z+87N/agxF5OcN6uf3Mu32JtPtqVEE9X/ccP34NrEktzeibr9JKCW3vo9j1K1L+g/X5bdwrP/jkkqgYjq9Y/3bSxSz7PImfXN5e2Kw/qWoG+H1ScFyt3T9PCXWj0KsU/pV4tblf06HRX5cdoqw/kClOIlnZNKhKovi/O4EYKQDMlsGUezfdTpHL7D9SSeXhoX1/olemhzZMXLXESVRdS7/ZV3+hSt3R3VMdEsTli5yi++OmWOKW4omYNEqfXd1PMdK3ep0IIq+wHkkx8gVVeeqCOsJ+qToV6CjONaf4GQFYHdiFNOex3CM3F1dlIFNgV3Curg4fI71JxdUV1dFaH+g16tAdcVuOLRj5O4CpZPBqyuY/zlnSrEO7Ri6JYMBW4aHUdSoDu3Y08WVESzDm0CvPzkU731gx/zVnTCVxgaeTDWvmJrN1QG5aIY9TwrJnqHDHTNKhrpoUq75Qbmopk8XYoRyrFe4+qQ6hW41m4eJI3ld8cx1VtrMVxcdn12am6GoDoJl39ORX+f5M5PpHxUM8ofcFWHdA7WzXyxynw7+zMn8V2n69BhhhqKCffNpv9Hs3/PxVzx/+8MJi9pk9Tx9XmEUC7GasCgmzfs91jEiYLFwTvmV6eSCW0g7FlGly5FZvjfH+rNKpSLN0RzyPBGnWWVJ35SZmJifdpOONNuTY+S+UtHA7p98wwMwIBMTu4E9yZxxVfbjWB+xNLLm/VR78FcTURp8BvOMA+0jx0iOZSBbKU8+L+aC5bhKx/m6Y30RS+VqqsWSFHNBdXvKBvqqY5JbpjRT+j8VcrE1TF7zYb7mWL/V0rgoGYd71e5Y3etM7D6W9n0+TKvyBcfIfUsHkz0zPMuzTFYBrAHzxx9kVFSfd6w/a6FK0AzV4uzsXx7O/AbWHgw4FgX7pGMkwzKCpWRP5nudIUY77w0Bz5YjDjqofMqx/n1LkIkM2KbCLVPhwEHfNIWeS9b0yqFardnwc1iz1m4uKmFF+pTzdSgeOAZ5N8DnVIPZ/JPpZbcUVcxs+enCTot5RdihyHAmdLNTrMFs/YVj2FwFM3Jhfk3n09VMaBQPHGgaY/UHmFbCpu8sP27bcvAOMjwM6u3C3P5qNkTGUWvQGvHjG5mPBuFHThc23EtmGpfGBoc93xhgIZz51EMpxqNBnWr2bsf69boN8xm5RDKM4szIVRnM9ANHLn9No1FHvdMxsqiHa3i1DAvIMjYYcWjGYpqtzAk+X8MgKdfoXY7ZrGsIATobFXIBG6SNOYogluUj7eOsM2wNOBSbDMOz0y0QPINfL+OCo97ZazEUaCC74a+BSsCiWux0zF6Eqbnwdhi2CtEGEKNhixFkxQ1etipSN+W5hzOVijq22OFYjlWvx9AwqhdxDWBr0cqv0mmw0uJIy0NYV1UOZi8s3hWWtAMvTVPi+i7PwNnQPJ2zXihcVhmYPbKsek42grY4NIMN8HOsXnt5j9m8eC47ngmm0VmtUWFnYoHyoEOgWCRNZHDRMZdekGkPJGthu/ZH9RQN57UKkp8G0ZLJhEgCmgCHUVwX2DVoCfvQfJ1tgs4oDEfC8cZfWiHHKnCM5FgZmIXLdxpysIysPIojcd+e0U6sN5kv02HWwiE3GFlhNmvDVC7sRaPRsGS0NJJraflgkGBOUxTpChQ2xiWjas2YEc/5KNQ04TQ5X4cpWaOhJ7/dsGQuBINF3lcWT6u1gA1obcCaiefCpxarVC1cQUt5kCHfFe3lArEogwJmL9xGwwCGzs6VeoO4vrZ70k2HR2I+atXT+gm2r6UhaGKteWWzgwjnd5VQNrCZEUtk6QYuRxKfn56mlL1AWIH9ofgYQ+heV2TVFwGncCJgcBsiVpRhaZ6FATDIkYT5l5yV8oUzaQXWxQcBe526LFayrHCx5HfZsee6DTfiWGMRSw2mrUYyjDGKQktdPIXGai0P2RC+pbRm5SHaCrGnprnj3EIZSyHTIrmABh6W0FryFegvF9rmF7ILgdQsTuD2Yk62HbtJZuFY4xLB0B4hPQAizqdZxGKuq0z5g/CwW5Ig2xtjMZxxnl06mEjmiHFDTDt7JywqEhjOCfVs7YxMWFCcgMyN9A+U9nzjefSSSpfdjefc9IExiumiF7N2aWLiT2LpVlniZK7rxYZ9iGyDTdTW2DCSG4xkyJRFkRZtYRxlBcpcYGmoUVkNRTSc5u+QbCceq8bBCLiBL4P5BpONrUCfF3a6AgupaEFgdzthOVNmWi8wkkFU43FPYGOjKFV4bQkB9JclUBB5ZmvwHqw2lettisioAzTlIoaPA1i8poBx8goso4IDH+u33AkFVFSJMFccm75Q8mnKsajSgczu2rFerJBGTHJYjuOdVBmXUO/PSLvq9caBoy1VwlLOasRqO9g25gdJ+Q9Z7GYSlULlZrXbnvzkvSqLrRstA18/nBmOa2QehTqCSS78iGlRwiRi9dSDjoftLiWOqHPGuHGqeLEbKONiY/mNYq62IE8/GPaEy7TIRbHJuSyE76aiXOyGuWFH0bmqqlvoWFUggypG4QrYxg33PUywz7D+cQGX6BXNceMHD8kxhtZglcL11qbexI+XERYSM1EmPE9FZi55QpNbMFdbAWOuNZaFuUZsP1jT3YN2Kk5qF9ayEUrBahemDa5KMc+iwm2B09H9gTlXxAUj6FcVpqoxt3IwryqSjY3fZhid28ZQgtX5aQt8T6u2tzUsc24JjmVgvQ3vqdwT9JZzw4Kwg+XYk9jc9MkCtwyKUpW6BWNTxyha0gt4xyBS7tqwyRfRxvDdgO0EsOsjSHZs8d1iKEa1wy0YuFdNvA0PoBPTWhspAPhpk80exVt99zpzAlisfJS0fulQiLXLLQQTznvOG+wDap5t8+dnbL1oY0hE298K79hnCCMS6B1Y4siBl8D9eKQPfMfxA7ROSRhGNw62JbuX4xZT9T70nQfZZGsA7xu7bc9rZx/vetrKZykVjeMiNtc1Q70ntwSo7VuS3pZGcZ6kI2JByvZ5Vh4V57xx4OtTke3mrdd2E5XqQ1hnOVW1iudHwjcpF+yL9cDkHdw2TbnAuFg3vXaSCFTJh7DSciFEf5zwefFEGRVyZXQFIaWV5M2rpnQfyy0Klj8QhM1no7SzkgtNjrcDrF3yAYLurGNqXPLBlXjGAodcGEVuH2NLYLTtLi6hvGwDx0Cw3XziS1vbqzEMCEYsJir1DSMpxtYoLwPbVpOq97bZdQx+n8hDrVrDkCVVWQl+Ase1UC2g4v3G6f00cN5ma3LuQ7K9pAcvelVV+LOgbYL2wb9t/K8sMDaQFmBS7VHnvsRGcN/a1DSudB1tVCNVQXa+yW00CrUkqY3LZt4Fxv6w6TgaWRbJcqwkVrlqmT6+ElVFfCxxSvxZyg6urQBfE/Xw5f8DLBBGqwpoGMm4NJJQUByViWF92a2zB3XMWhXwkje4HJVysR5bbYA9uEXTSwcD52oQJFpD9FWB5LQX/LAhSA7g1hnUMbNwy02n1UJFhYtjo3Ltwy0ms2N0WozkWwE27QBVuXcQt5iKHMN5iVfIBZFWnNyXW0xFjj2IkTQIdgX56v7cYipy7C9cHRdgAYMjce3TLSb74dw0cxrJAi6gFt08369bMLcZDEPlm7lwOYpYB/hdCuoYU03Bw0huaibh7kh52G1U+3eLiSAYTlEDvvOsRhl2hXQ5ZncxrAP9BpHNp8hFIfEohoFK4wW2np/b0k2HcYuJ1HSwzIZNjZNmrwA4f3vA37cyOXZ+/gLX/urAItfh3CoEq+EGrrXDNhUfA6vIMSIQcMGKeDsKlrS+dkUSbESsI/yGrdEx/FmK3NZ1Mq7Du8VEDFw13MCltkc7Yz3Sb3Dbj10NDI9iL+KFvwwn6CLfUUS6GlgXI/mgor50j5FbmahjlAzokLDb7eLPUnhbF5fj8dwCsK6mdAPnDbAc/x4VCx1ThBs4b2fLkRz9L8YwOIYbePbu+thEGZjm2CO055E8EZfBMYzkLzHfTgKmOZZu4BDGkp+uHhwszSQeSfwyhDVcb3fdfUiwx2sBjf6BG/jLdff6uHVLA6Mw8M81haJ/oEs2fXFSLFqgHq8FdVOe7ePJ/8Y0u3stCSN5YrcAQXLs+vfub+qPJNWxb+AVSnHs5dQ8uezv6RfVr99Zev06NYqsFwT7/X2CmMp5+fXr18ue/3qJ/ejktfR/WP8FOoK2QLx2JrUAAAAASUVORK5CYII=", - "contentType": "image/png" - }, - "method": "PUT", - "url": "/upload/4a500b49-fe07-48d1-822e-923f378dfc8d/binary?hashAlgorithm=sha256", - "headers": { - "Content-Length": "0", - "Server": "globaledge-envoy", - "X-B3-Traceid": "d66766cddb37be87", - "X-B3-Spanid": "af163411d35236ea", - "X-B3-Parentspanid": "d2971de976a459e9", - "X-B3-Sampled": "1", - "X-Dns-Prefetch-Control": "off", - "X-Frame-Options": "SAMEORIGIN", - "X-Download-Options": "noopen", - "Access-Control-Allow-Origin": "*", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Range, X-Media-Region", - "X-Media-Region": "us-west-1", - "Content-Security-Policy": "script-src 'none'", - "Atl-Traceid": "d66766cddb37be87", - "X-Envoy-Upstream-Service-Time": "282", - "Expect-Ct": "report-uri=\"https://web-security-reports.services.atlassian.com/expect-ct-report/dt-api-filestore\", max-age=86400", - "X-Logging-Id": "V1xZRhzmw", - "Strict-Transport-Security": "max-age=63072000; preload", - "X-Content-Type-Options": "nosniff", - "X-Xss-Protection": "1; mode=block" - }, - "response": null, - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0417900085449", - "Connection": "Keep-Alive", - "X-Request-Count": "4799", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3055" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"adde53c90097304295810fc7b94b724a165b5354\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B17d2cda6-a30f-431a-8387-8c6d8bacc1b5%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{17d2cda6-a30f-431a-8387-8c6d8bacc1b5}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097304295810fc7b94b724a165b5354\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097304295810fc7b94b724a165b5354/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/adde53c90097304295810fc7b94b724a165b5354\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/adde53c90097304295810fc7b94b724a165b5354\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/adde53c90097304295810fc7b94b724a165b5354\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097304295810fc7b94b724a165b5354/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097304295810fc7b94b724a165b5354/statuses\"}}, \"author\": {\"raw\": \"ownerkah \", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T13:17:51+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "body": "{\"oid\":\"b1d40c19b912d2130d1bed8ff1a62a55c7d932978502e1d8559eb77951c5e8d3\",\"size\":3470}", - "method": "POST", - "url": "/%7B%7D/%7B17d2cda6-a30f-431a-8387-8c6d8bacc1b5%7D/info/lfs/object/verify?upload_id=4a500b49-fe07-48d1-822e-923f378dfc8d", - "headers": { - "bbr1private": "0", - "bbr1wikiprivate": "0", - "Server": "nginx", - "Vary": "Authorization", - "bbr1repouuid": "17d2cda6-a30f-431a-8387-8c6d8bacc1b5", - "Cache-Control": "no-cache", - "Content-Type": "application/vnd.git-lfs+json", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "X-Usage-Output-Ops": "0", - "bbr1reposlug": "repo", - "bbr1hasadmin": "1", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "bbr1scm": "git", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Usage-User-Time": "0.056767", - "X-Usage-System-Time": "0.001822", - "bbuserid": "6965054", - "bbauthhash": "", - "X-Served-By": "app-163", - "X-Consumer-Client-Id": "ATfdeqkMFdgQA3S8Tr", - "bbr1ownerid": "6965054", - "bbr1hasread": "1", - "bbr1issuesprivate": "0", - "bbr1haswrite": "1", - "bbr1size": "4289079", - "Access-Control-Allow-Origin": "*", - "X-View-Name": "bitbucket.apps.lfs.clientapi.verify.ObjectVerifyHandler", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.270738840103", - "Connection": "Keep-Alive", - "bbusername": "owner", - "X-Token-Id": "47401645", - "X-Usage-Input-Ops": "0", - "X-Request-Count": "2962", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "bbr1owner": "owner", - "Content-Length": "4", - "bbr1id": "64033171" - }, - "response": "null", - "status": 200 - }, - { - "body": "------WebKitFormBoundary0YPA7SJgVvMYyReS\r\nContent-Disposition: form-data; name=\"content/posts/1970-01-01-first-title.md\"; filename=\"1970-01-01-first-title.md\"\r\nContent-Type: application/octet-stream\r\n\r\n---\ntemplate: post\ntitle: first title\nimage: /media/netlify.png\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\r\n------WebKitFormBoundary0YPA7SJgVvMYyReS\r\nContent-Disposition: form-data; name=\"static/media/netlify.png\"; filename=\"netlify.png\"\r\nContent-Type: text/plain\r\n\r\nversion https://git-lfs.github.com/spec/v1\noid sha256:b1d40c19b912d2130d1bed8ff1a62a55c7d932978502e1d8559eb77951c5e8d3\nsize 3470\n\r\n------WebKitFormBoundary0YPA7SJgVvMYyReS\r\nContent-Disposition: form-data; name=\"message\"\r\n\r\nCreate Post â1970-01-01-first-titleâ\r\n------WebKitFormBoundary0YPA7SJgVvMYyReS\r\nContent-Disposition: form-data; name=\"branch\"\r\n\r\ncms/posts/1970-01-01-first-title\r\n------WebKitFormBoundary0YPA7SJgVvMYyReS\r\nContent-Disposition: form-data; name=\"parents\"\r\n\r\nadde53c90097304295810fc7b94b724a165b5354\r\n------WebKitFormBoundary0YPA7SJgVvMYyReS--\r\n", - "method": "POST", - "url": "/2.0/repositories/owner/repo/src", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "text/html; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/commit/c93abb1f2807eb9da03e0c85c50f925a5838ed5a", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.592307090759", - "Connection": "Keep-Alive", - "X-Request-Count": "3788", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "0" - }, - "response": null, - "status": 201 - }, - { - "body": "{\"title\":\"Create Post “1970-01-01-first-title”\",\"source\":{\"branch\":{\"name\":\"cms/posts/1970-01-01-first-title\"}},\"destination\":{\"branch\":{\"name\":\"master\"}},\"description\":\"Automatically generated by Decap CMS\",\"close_source_branch\":true}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.289378166199", - "Connection": "Keep-Alive", - "X-Request-Count": "1152", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "5261" - }, - "response": "{\"rendered\": {\"description\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \" Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"title\": {\"raw\": \"Create Post “1970-01-01-first-title”\", \"markup\": \"markdown\", \"html\": \"Create Post “1970-01-01-first-title”
\", \"type\": \"rendered\"}}, \"type\": \"pullrequest\", \"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:c93abb1f2807%0Dadde53c90097?from_pullrequest_id=1\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:c93abb1f2807%0Dadde53c90097?from_pullrequest_id=1\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"reviewers\": [], \"id\": 1, \"destination\": {\"commit\": {\"hash\": \"adde53c90097\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/adde53c90097\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B17d2cda6-a30f-431a-8387-8c6d8bacc1b5%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{17d2cda6-a30f-431a-8387-8c6d8bacc1b5}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T13:18:19.652746+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"c93abb1f2807\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/c93abb1f2807\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/c93abb1f2807\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B17d2cda6-a30f-431a-8387-8c6d8bacc1b5%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{17d2cda6-a30f-431a-8387-8c6d8bacc1b5}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 0, \"state\": \"OPEN\", \"task_count\": 0, \"participants\": [], \"reason\": \"\", \"updated_on\": \"2020-04-12T13:18:19.682785+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}", - "status": 201 - }, - { - "body": "{\"content\":{\"raw\":\"decap-cms/draft\"}}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/1/comments", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144756602", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.105293989182", - "Connection": "Keep-Alive", - "X-Request-Count": "3748", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1551" - }, - "response": "{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144756602\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1/_/diff#comment-144756602\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 1, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T13:18:20.511768+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T13:18:20.514933+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144756602}", - "status": 201 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0857949256897", - "Connection": "Keep-Alive", - "X-Request-Count": "1874", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:c93abb1f2807%0Dadde53c90097?from_pullrequest_id=1\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:c93abb1f2807%0Dadde53c90097?from_pullrequest_id=1\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 1, \"destination\": {\"commit\": {\"hash\": \"adde53c90097\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/adde53c90097\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B17d2cda6-a30f-431a-8387-8c6d8bacc1b5%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{17d2cda6-a30f-431a-8387-8c6d8bacc1b5}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T13:18:19.652746+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"c93abb1f2807\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/c93abb1f2807\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/c93abb1f2807\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B17d2cda6-a30f-431a-8387-8c6d8bacc1b5%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{17d2cda6-a30f-431a-8387-8c6d8bacc1b5}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T13:18:20.514933+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/1/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.101686000824", - "Connection": "Keep-Alive", - "X-Request-Count": "1878", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144756602\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1/_/diff#comment-144756602\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 1, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T13:18:20.511768+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T13:18:20.514933+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144756602}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/diff/cms/posts/1970-01-01-first-title..master?binary=false", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "must-revalidate, max-age=0", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.15668797493", - "Connection": "Keep-Alive", - "X-Request-Count": "1352", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "738" - }, - "response": "diff --git a/content/posts/1970-01-01-first-title.md b/content/posts/1970-01-01-first-title.md\nnew file mode 100644\nindex 0000000..5712f24\n--- /dev/null\n+++ b/content/posts/1970-01-01-first-title.md\n@@ -0,0 +1,11 @@\n+---\n+template: post\n+title: first title\n+image: /media/netlify.png\n+date: 1970-01-01T00:00:00.000Z\n+description: first description\n+category: first category\n+tags:\n+ - tag1\n+---\n+first body\n\\ No newline at end of file\ndiff --git a/static/media/netlify.png b/static/media/netlify.png\nnew file mode 100644\nindex 0000000..a137fb3\n--- /dev/null\n+++ b/static/media/netlify.png\n@@ -0,0 +1,3 @@\n+version https://git-lfs.github.com/spec/v1\n+oid sha256:b1d40c19b912d2130d1bed8ff1a62a55c7d932978502e1d8559eb77951c5e8d3\n+size 3470\n", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/1/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.101392030716", - "Connection": "Keep-Alive", - "X-Request-Count": "4403", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144756602\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1/_/diff#comment-144756602\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 1, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T13:18:20.511768+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T13:18:20.514933+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144756602}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0751090049744", - "Connection": "Keep-Alive", - "X-Request-Count": "1269", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3726" - }, - "response": "{\"name\": \"cms/posts/1970-01-01-first-title\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/cms/posts/1970-01-01-first-title\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/cms/posts/1970-01-01-first-title\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"c93abb1f2807eb9da03e0c85c50f925a5838ed5a\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B17d2cda6-a30f-431a-8387-8c6d8bacc1b5%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{17d2cda6-a30f-431a-8387-8c6d8bacc1b5}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/c93abb1f2807eb9da03e0c85c50f925a5838ed5a\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/c93abb1f2807eb9da03e0c85c50f925a5838ed5a/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/c93abb1f2807eb9da03e0c85c50f925a5838ed5a\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/c93abb1f2807eb9da03e0c85c50f925a5838ed5a\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/c93abb1f2807eb9da03e0c85c50f925a5838ed5a\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/c93abb1f2807eb9da03e0c85c50f925a5838ed5a/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/c93abb1f2807eb9da03e0c85c50f925a5838ed5a/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"adde53c90097304295810fc7b94b724a165b5354\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097304295810fc7b94b724a165b5354\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/adde53c90097304295810fc7b94b724a165b5354\"}}}], \"date\": \"2020-04-12T13:18:18+00:00\", \"message\": \"Create Post “1970-01-01-first-title”\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/c93abb1f2807eb9da03e0c85c50f925a5838ed5a/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0494759082794", - "Connection": "Keep-Alive", - "X-Request-Count": "1892", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "180" - }, - "response": "---\ntemplate: post\ntitle: first title\nimage: /media/netlify.png\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0849840641022", - "Connection": "Keep-Alive", - "X-Request-Count": "4686", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3726" - }, - "response": "{\"name\": \"cms/posts/1970-01-01-first-title\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/cms/posts/1970-01-01-first-title\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/cms/posts/1970-01-01-first-title\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"c93abb1f2807eb9da03e0c85c50f925a5838ed5a\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B17d2cda6-a30f-431a-8387-8c6d8bacc1b5%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{17d2cda6-a30f-431a-8387-8c6d8bacc1b5}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/c93abb1f2807eb9da03e0c85c50f925a5838ed5a\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/c93abb1f2807eb9da03e0c85c50f925a5838ed5a/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/c93abb1f2807eb9da03e0c85c50f925a5838ed5a\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/c93abb1f2807eb9da03e0c85c50f925a5838ed5a\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/c93abb1f2807eb9da03e0c85c50f925a5838ed5a\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/c93abb1f2807eb9da03e0c85c50f925a5838ed5a/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/c93abb1f2807eb9da03e0c85c50f925a5838ed5a/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"adde53c90097304295810fc7b94b724a165b5354\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097304295810fc7b94b724a165b5354\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/adde53c90097304295810fc7b94b724a165b5354\"}}}], \"date\": \"2020-04-12T13:18:18+00:00\", \"message\": \"Create Post “1970-01-01-first-title”\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/c93abb1f2807eb9da03e0c85c50f925a5838ed5a/static/media/netlify.png", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "text/html; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.media.atlassian.com/file/026f2f3e-5c97-48e3-9ebd-b9e0314a6b69/binarytoken=fakeTokenclient=fakeClient&dl=1&name=netlify.png", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0588359832764", - "Connection": "Keep-Alive", - "X-Request-Count": "507", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "0" - }, - "response": null, - "status": 302 - }, - { - "method": "GET", - "url": "/file/026f2f3e-5c97-48e3-9ebd-b9e0314a6b69/binarytoken=fakeTokenclient=fakeClient&dl=1&name=netlify.png", - "headers": { - "Content-Type": "image/png", - "Content-Length": "3470", - "Server": "globaledge-envoy", - "X-B3-Traceid": "da18a6710ef2466c", - "X-B3-Spanid": "f3bfa4d571936ee6", - "X-B3-Parentspanid": "081662e507a7bcd1", - "X-B3-Sampled": "1", - "X-Dns-Prefetch-Control": "off", - "X-Frame-Options": "SAMEORIGIN", - "X-Download-Options": "noopen", - "Access-Control-Allow-Origin": "*", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Range, X-Media-Region", - "X-Media-Region": "us-west-1", - "Content-Security-Policy": "script-src 'none'", - "Timing-Allow-Origin": "*", - "Accept-Ranges": "bytes", - "Content-Disposition": "attachment; filename=\"netlify.png\"", - "Cache-Control": "private", - "Atl-Traceid": "da18a6710ef2466c", - "X-Envoy-Upstream-Service-Time": "658", - "Expect-Ct": "report-uri=\"https://web-security-reports.services.atlassian.com/expect-ct-report/dt-api-filestore\", max-age=86400", - "X-Logging-Id": "V1xZRhzmw", - "Strict-Transport-Security": "max-age=63072000; preload", - "X-Content-Type-Options": "nosniff", - "X-Xss-Protection": "1; mode=block" - }, - "response": { - "encoding": "base64", - "content": "iVBORw0KGgoAAAANSUhEUgAAAJcAAACXCAMAAAAvQTlLAAAAwFBMVEX///85rbswtrpAp71DpL03sLs8q7xGob4tubkzs7o+qLwqvLknv7gkwrgpvbhIn75Mm7/x+vrs9fhktcfn9/bg8PMtp7lSr8IWw7U7yL3Y7vAAq7JSzMM+w75MwMGj2dxmv8iLx9O73ORcrMRorMeJ2tJr1MlTx8N8z8+45uWs4OBQu8HH5ulTuMMXqbaW0Ndxvsuq1t4jnrd6ss2TwNUwj7ii4tzP8Ox00syR19ZkxseByNCezdnP5Ox2tsyDv9FhQXEFAAAMiUlEQVR4nO2ci1biyBaGDTcBUaxAEjuoQLQHEQhJ2j7TCLTv/1anau8kdU3wwsW1zvlnVg9UKlVf/r1rVyFjn539X6cSOTWASf2f/9z+87N/agxF5OcN6uf3Mu32JtPtqVEE9X/ccP34NrEktzeibr9JKCW3vo9j1K1L+g/X5bdwrP/jkkqgYjq9Y/3bSxSz7PImfXN5e2Kw/qWoG+H1ScFyt3T9PCXWj0KsU/pV4tblf06HRX5cdoqw/kClOIlnZNKhKovi/O4EYKQDMlsGUezfdTpHL7D9SSeXhoX1/olemhzZMXLXESVRdS7/ZV3+hSt3R3VMdEsTli5yi++OmWOKW4omYNEqfXd1PMdK3ep0IIq+wHkkx8gVVeeqCOsJ+qToV6CjONaf4GQFYHdiFNOex3CM3F1dlIFNgV3Curg4fI71JxdUV1dFaH+g16tAdcVuOLRj5O4CpZPBqyuY/zlnSrEO7Ri6JYMBW4aHUdSoDu3Y08WVESzDm0CvPzkU731gx/zVnTCVxgaeTDWvmJrN1QG5aIY9TwrJnqHDHTNKhrpoUq75Qbmopk8XYoRyrFe4+qQ6hW41m4eJI3ld8cx1VtrMVxcdn12am6GoDoJl39ORX+f5M5PpHxUM8ofcFWHdA7WzXyxynw7+zMn8V2n69BhhhqKCffNpv9Hs3/PxVzx/+8MJi9pk9Tx9XmEUC7GasCgmzfs91jEiYLFwTvmV6eSCW0g7FlGly5FZvjfH+rNKpSLN0RzyPBGnWWVJ35SZmJifdpOONNuTY+S+UtHA7p98wwMwIBMTu4E9yZxxVfbjWB+xNLLm/VR78FcTURp8BvOMA+0jx0iOZSBbKU8+L+aC5bhKx/m6Y30RS+VqqsWSFHNBdXvKBvqqY5JbpjRT+j8VcrE1TF7zYb7mWL/V0rgoGYd71e5Y3etM7D6W9n0+TKvyBcfIfUsHkz0zPMuzTFYBrAHzxx9kVFSfd6w/a6FK0AzV4uzsXx7O/AbWHgw4FgX7pGMkwzKCpWRP5nudIUY77w0Bz5YjDjqofMqx/n1LkIkM2KbCLVPhwEHfNIWeS9b0yqFardnwc1iz1m4uKmFF+pTzdSgeOAZ5N8DnVIPZ/JPpZbcUVcxs+enCTot5RdihyHAmdLNTrMFs/YVj2FwFM3Jhfk3n09VMaBQPHGgaY/UHmFbCpu8sP27bcvAOMjwM6u3C3P5qNkTGUWvQGvHjG5mPBuFHThc23EtmGpfGBoc93xhgIZz51EMpxqNBnWr2bsf69boN8xm5RDKM4szIVRnM9ANHLn9No1FHvdMxsqiHa3i1DAvIMjYYcWjGYpqtzAk+X8MgKdfoXY7ZrGsIATobFXIBG6SNOYogluUj7eOsM2wNOBSbDMOz0y0QPINfL+OCo97ZazEUaCC74a+BSsCiWux0zF6Eqbnwdhi2CtEGEKNhixFkxQ1etipSN+W5hzOVijq22OFYjlWvx9AwqhdxDWBr0cqv0mmw0uJIy0NYV1UOZi8s3hWWtAMvTVPi+i7PwNnQPJ2zXihcVhmYPbKsek42grY4NIMN8HOsXnt5j9m8eC47ngmm0VmtUWFnYoHyoEOgWCRNZHDRMZdekGkPJGthu/ZH9RQN57UKkp8G0ZLJhEgCmgCHUVwX2DVoCfvQfJ1tgs4oDEfC8cZfWiHHKnCM5FgZmIXLdxpysIysPIojcd+e0U6sN5kv02HWwiE3GFlhNmvDVC7sRaPRsGS0NJJraflgkGBOUxTpChQ2xiWjas2YEc/5KNQ04TQ5X4cpWaOhJ7/dsGQuBINF3lcWT6u1gA1obcCaiefCpxarVC1cQUt5kCHfFe3lArEogwJmL9xGwwCGzs6VeoO4vrZ70k2HR2I+atXT+gm2r6UhaGKteWWzgwjnd5VQNrCZEUtk6QYuRxKfn56mlL1AWIH9ofgYQ+heV2TVFwGncCJgcBsiVpRhaZ6FATDIkYT5l5yV8oUzaQXWxQcBe526LFayrHCx5HfZsee6DTfiWGMRSw2mrUYyjDGKQktdPIXGai0P2RC+pbRm5SHaCrGnprnj3EIZSyHTIrmABh6W0FryFegvF9rmF7ILgdQsTuD2Yk62HbtJZuFY4xLB0B4hPQAizqdZxGKuq0z5g/CwW5Ig2xtjMZxxnl06mEjmiHFDTDt7JywqEhjOCfVs7YxMWFCcgMyN9A+U9nzjefSSSpfdjefc9IExiumiF7N2aWLiT2LpVlniZK7rxYZ9iGyDTdTW2DCSG4xkyJRFkRZtYRxlBcpcYGmoUVkNRTSc5u+QbCceq8bBCLiBL4P5BpONrUCfF3a6AgupaEFgdzthOVNmWi8wkkFU43FPYGOjKFV4bQkB9JclUBB5ZmvwHqw2lettisioAzTlIoaPA1i8poBx8goso4IDH+u33AkFVFSJMFccm75Q8mnKsajSgczu2rFerJBGTHJYjuOdVBmXUO/PSLvq9caBoy1VwlLOasRqO9g25gdJ+Q9Z7GYSlULlZrXbnvzkvSqLrRstA18/nBmOa2QehTqCSS78iGlRwiRi9dSDjoftLiWOqHPGuHGqeLEbKONiY/mNYq62IE8/GPaEy7TIRbHJuSyE76aiXOyGuWFH0bmqqlvoWFUggypG4QrYxg33PUywz7D+cQGX6BXNceMHD8kxhtZglcL11qbexI+XERYSM1EmPE9FZi55QpNbMFdbAWOuNZaFuUZsP1jT3YN2Kk5qF9ayEUrBahemDa5KMc+iwm2B09H9gTlXxAUj6FcVpqoxt3IwryqSjY3fZhid28ZQgtX5aQt8T6u2tzUsc24JjmVgvQ3vqdwT9JZzw4Kwg+XYk9jc9MkCtwyKUpW6BWNTxyha0gt4xyBS7tqwyRfRxvDdgO0EsOsjSHZs8d1iKEa1wy0YuFdNvA0PoBPTWhspAPhpk80exVt99zpzAlisfJS0fulQiLXLLQQTznvOG+wDap5t8+dnbL1oY0hE298K79hnCCMS6B1Y4siBl8D9eKQPfMfxA7ROSRhGNw62JbuX4xZT9T70nQfZZGsA7xu7bc9rZx/vetrKZykVjeMiNtc1Q70ntwSo7VuS3pZGcZ6kI2JByvZ5Vh4V57xx4OtTke3mrdd2E5XqQ1hnOVW1iudHwjcpF+yL9cDkHdw2TbnAuFg3vXaSCFTJh7DSciFEf5zwefFEGRVyZXQFIaWV5M2rpnQfyy0Klj8QhM1no7SzkgtNjrcDrF3yAYLurGNqXPLBlXjGAodcGEVuH2NLYLTtLi6hvGwDx0Cw3XziS1vbqzEMCEYsJir1DSMpxtYoLwPbVpOq97bZdQx+n8hDrVrDkCVVWQl+Ase1UC2g4v3G6f00cN5ma3LuQ7K9pAcvelVV+LOgbYL2wb9t/K8sMDaQFmBS7VHnvsRGcN/a1DSudB1tVCNVQXa+yW00CrUkqY3LZt4Fxv6w6TgaWRbJcqwkVrlqmT6+ElVFfCxxSvxZyg6urQBfE/Xw5f8DLBBGqwpoGMm4NJJQUByViWF92a2zB3XMWhXwkje4HJVysR5bbYA9uEXTSwcD52oQJFpD9FWB5LQX/LAhSA7g1hnUMbNwy02n1UJFhYtjo3Ltwy0ms2N0WozkWwE27QBVuXcQt5iKHMN5iVfIBZFWnNyXW0xFjj2IkTQIdgX56v7cYipy7C9cHRdgAYMjce3TLSb74dw0cxrJAi6gFt08369bMLcZDEPlm7lwOYpYB/hdCuoYU03Bw0huaibh7kh52G1U+3eLiSAYTlEDvvOsRhl2hXQ5ZncxrAP9BpHNp8hFIfEohoFK4wW2np/b0k2HcYuJ1HSwzIZNjZNmrwA4f3vA37cyOXZ+/gLX/urAItfh3CoEq+EGrrXDNhUfA6vIMSIQcMGKeDsKlrS+dkUSbESsI/yGrdEx/FmK3NZ1Mq7Du8VEDFw13MCltkc7Yz3Sb3Dbj10NDI9iL+KFvwwn6CLfUUS6GlgXI/mgor50j5FbmahjlAzokLDb7eLPUnhbF5fj8dwCsK6mdAPnDbAc/x4VCx1ThBs4b2fLkRz9L8YwOIYbePbu+thEGZjm2CO055E8EZfBMYzkLzHfTgKmOZZu4BDGkp+uHhwszSQeSfwyhDVcb3fdfUiwx2sBjf6BG/jLdff6uHVLA6Mw8M81haJ/oEs2fXFSLFqgHq8FdVOe7ePJ/8Y0u3stCSN5YrcAQXLs+vfub+qPJNWxb+AVSnHs5dQ8uezv6RfVr99Zev06NYqsFwT7/X2CmMp5+fXr18ue/3qJ/ejktfR/WP8FOoK2QLx2JrUAAAAASUVORK5CYII=" - }, - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0840420722961", - "Connection": "Keep-Alive", - "X-Request-Count": "1860", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:c93abb1f2807%0Dadde53c90097?from_pullrequest_id=1\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:c93abb1f2807%0Dadde53c90097?from_pullrequest_id=1\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 1, \"destination\": {\"commit\": {\"hash\": \"adde53c90097\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/adde53c90097\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B17d2cda6-a30f-431a-8387-8c6d8bacc1b5%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{17d2cda6-a30f-431a-8387-8c6d8bacc1b5}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T13:18:19.652746+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \" Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"c93abb1f2807\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/c93abb1f2807\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/c93abb1f2807\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B17d2cda6-a30f-431a-8387-8c6d8bacc1b5%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{17d2cda6-a30f-431a-8387-8c6d8bacc1b5}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T13:18:20.514933+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0949950218201", - "Connection": "Keep-Alive", - "X-Request-Count": "1678", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:c93abb1f2807%0Dadde53c90097?from_pullrequest_id=1\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:c93abb1f2807%0Dadde53c90097?from_pullrequest_id=1\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 1, \"destination\": {\"commit\": {\"hash\": \"adde53c90097\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/adde53c90097\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B17d2cda6-a30f-431a-8387-8c6d8bacc1b5%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{17d2cda6-a30f-431a-8387-8c6d8bacc1b5}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T13:18:19.652746+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"c93abb1f2807\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/c93abb1f2807\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/c93abb1f2807\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B17d2cda6-a30f-431a-8387-8c6d8bacc1b5%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{17d2cda6-a30f-431a-8387-8c6d8bacc1b5}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T13:18:20.514933+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/1/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0856490135193", - "Connection": "Keep-Alive", - "X-Request-Count": "3476", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144756602\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1/_/diff#comment-144756602\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 1, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T13:18:20.511768+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T13:18:20.514933+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144756602}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/1/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0399489402771", - "Connection": "Keep-Alive", - "X-Request-Count": "3644", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/1/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.108273983002", - "Connection": "Keep-Alive", - "X-Request-Count": "1420", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144756602\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1/_/diff#comment-144756602\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 1, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T13:18:20.511768+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T13:18:20.514933+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144756602}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "body": "{\"content\":{\"raw\":\"decap-cms/pending_publish\"}}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/1/comments", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144756610", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.136699914932", - "Connection": "Keep-Alive", - "X-Request-Count": "471", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1571" - }, - "response": "{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144756610\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1/_/diff#comment-144756610\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 1, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_publish\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_publish
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T13:18:30.892756+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T13:18:30.895645+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144756610}", - "status": 201 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0770130157471", - "Connection": "Keep-Alive", - "X-Request-Count": "4981", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:c93abb1f2807%0Dadde53c90097?from_pullrequest_id=1\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:c93abb1f2807%0Dadde53c90097?from_pullrequest_id=1\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 1, \"destination\": {\"commit\": {\"hash\": \"adde53c90097\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/adde53c90097\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B17d2cda6-a30f-431a-8387-8c6d8bacc1b5%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{17d2cda6-a30f-431a-8387-8c6d8bacc1b5}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T13:18:19.652746+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"c93abb1f2807\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/c93abb1f2807\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/c93abb1f2807\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B17d2cda6-a30f-431a-8387-8c6d8bacc1b5%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{17d2cda6-a30f-431a-8387-8c6d8bacc1b5}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 2, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T13:18:30.895645+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/1/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0949358940125", - "Connection": "Keep-Alive", - "X-Request-Count": "916", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3176" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144756602\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1/_/diff#comment-144756602\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 1, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T13:18:20.511768+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T13:18:20.514933+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144756602}, {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144756610\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1/_/diff#comment-144756610\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 1, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_publish\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_publish
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T13:18:30.892756+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T13:18:30.895645+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144756610}], \"page\": 1, \"size\": 2}", - "status": 200 - }, - { - "body": "{\"message\":\"Automatically generated. Merged on Decap CMS.\",\"close_source_branch\":true,\"merge_strategy\":\"merge_commit\"}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/1/merge", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "1.11787986755", - "Connection": "Keep-Alive", - "X-Request-Count": "3488", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "7910" - }, - "response": "{\"rendered\": {\"description\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"title\": {\"raw\": \"Create Post “1970-01-01-first-title”\", \"markup\": \"markdown\", \"html\": \"Create Post “1970-01-01-first-title”
\", \"type\": \"rendered\"}}, \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:e420a02de94c%0Dadde53c90097?from_pullrequest_id=1\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:e420a02de94c%0Dadde53c90097?from_pullrequest_id=1\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/statuses\"}}, \"close_source_branch\": true, \"reviewers\": [], \"created_on\": \"2020-04-12T13:18:19.652746+00:00\", \"id\": 1, \"closed_on\": \"2020-04-12T13:18:35.008396+00:00\", \"title\": \"Create Post “1970-01-01-first-title”\", \"destination\": {\"commit\": {\"hash\": \"adde53c90097\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/adde53c90097\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B17d2cda6-a30f-431a-8387-8c6d8bacc1b5%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{17d2cda6-a30f-431a-8387-8c6d8bacc1b5}\"}, \"branch\": {\"name\": \"master\"}}, \"comment_count\": 2, \"source\": {\"commit\": {\"hash\": \"c93abb1f2807\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/c93abb1f2807\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/c93abb1f2807\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B17d2cda6-a30f-431a-8387-8c6d8bacc1b5%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{17d2cda6-a30f-431a-8387-8c6d8bacc1b5}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"state\": \"MERGED\", \"type\": \"pullrequest\", \"description\": \"Automatically generated by Decap CMS\", \"reason\": \"\", \"task_count\": 0, \"merge_commit\": {\"hash\": \"e420a02de94cdac2e1dfc6880979a346ed806522\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/e420a02de94cdac2e1dfc6880979a346ed806522\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/e420a02de94cdac2e1dfc6880979a346ed806522\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"summary\": {\"raw\": \"Automatically generated. Merged on Decap CMS.\\n\", \"markup\": \"markdown\", \"html\": \" Automatically generated. Merged on Decap CMS.
\", \"type\": \"rendered\"}, \"date\": \"2020-04-12T13:18:34+00:00\", \"message\": \"Automatically generated. Merged on Decap CMS.\\n\", \"type\": \"commit\"}, \"closed_by\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"participants\": [{\"role\": \"PARTICIPANT\", \"participated_on\": \"2020-04-12T13:18:30.895645+00:00\", \"type\": \"participant\", \"approved\": false, \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}], \"updated_on\": \"2020-04-12T13:18:35.008411+00:00\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0555198192596", - "Connection": "Keep-Alive", - "X-Request-Count": "573", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3867" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"e420a02de94cdac2e1dfc6880979a346ed806522\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B17d2cda6-a30f-431a-8387-8c6d8bacc1b5%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{17d2cda6-a30f-431a-8387-8c6d8bacc1b5}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/e420a02de94cdac2e1dfc6880979a346ed806522\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/e420a02de94cdac2e1dfc6880979a346ed806522/comments\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/e420a02de94cdac2e1dfc6880979a346ed806522\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/e420a02de94cdac2e1dfc6880979a346ed806522\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/e420a02de94cdac2e1dfc6880979a346ed806522/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/e420a02de94cdac2e1dfc6880979a346ed806522/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"adde53c90097304295810fc7b94b724a165b5354\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097304295810fc7b94b724a165b5354\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/adde53c90097304295810fc7b94b724a165b5354\"}}}, {\"hash\": \"c93abb1f2807eb9da03e0c85c50f925a5838ed5a\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/c93abb1f2807eb9da03e0c85c50f925a5838ed5a\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/c93abb1f2807eb9da03e0c85c50f925a5838ed5a\"}}}], \"date\": \"2020-04-12T13:18:34+00:00\", \"message\": \"Automatically generated. Merged on Decap CMS.\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0594780445099", - "Connection": "Keep-Alive", - "X-Request-Count": "4169", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/e420a02de94cdac2e1dfc6880979a346ed806522/static/media?max_depth=1&pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0560410022736", - "Connection": "Keep-Alive", - "X-Request-Count": "2447", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1173" - }, - "response": "{\"pagelen\":100,\"values\":[{\"mimetype\":\"image/png\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/e420a02de94cdac2e1dfc6880979a346ed806522/static/media/netlify.png\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/e420a02de94cdac2e1dfc6880979a346ed806522/static/media/netlify.png?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/e420a02de94cdac2e1dfc6880979a346ed806522/static/media/netlify.png\"}},\"path\":\"static/media/netlify.png\",\"commit\":{\"type\":\"commit\",\"hash\":\"e420a02de94cdac2e1dfc6880979a346ed806522\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/e420a02de94cdac2e1dfc6880979a346ed806522\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/e420a02de94cdac2e1dfc6880979a346ed806522\"}}},\"attributes\":[\"binary\",\"lfs\"],\"type\":\"commit_file\",\"size\":3470}],\"page\":1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0627298355103", - "Connection": "Keep-Alive", - "X-Request-Count": "1258", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3867" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"e420a02de94cdac2e1dfc6880979a346ed806522\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B17d2cda6-a30f-431a-8387-8c6d8bacc1b5%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{17d2cda6-a30f-431a-8387-8c6d8bacc1b5}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/e420a02de94cdac2e1dfc6880979a346ed806522\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/e420a02de94cdac2e1dfc6880979a346ed806522/comments\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/e420a02de94cdac2e1dfc6880979a346ed806522\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/e420a02de94cdac2e1dfc6880979a346ed806522\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/e420a02de94cdac2e1dfc6880979a346ed806522/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/e420a02de94cdac2e1dfc6880979a346ed806522/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"adde53c90097304295810fc7b94b724a165b5354\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097304295810fc7b94b724a165b5354\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/adde53c90097304295810fc7b94b724a165b5354\"}}}, {\"hash\": \"c93abb1f2807eb9da03e0c85c50f925a5838ed5a\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/c93abb1f2807eb9da03e0c85c50f925a5838ed5a\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/c93abb1f2807eb9da03e0c85c50f925a5838ed5a\"}}}], \"date\": \"2020-04-12T13:18:34+00:00\", \"message\": \"Automatically generated. Merged on Decap CMS.\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/e420a02de94cdac2e1dfc6880979a346ed806522/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0597958564758", - "Connection": "Keep-Alive", - "X-Request-Count": "355", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "180" - }, - "response": "---\ntemplate: post\ntitle: first title\nimage: /media/netlify.png\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0471439361572", - "Connection": "Keep-Alive", - "X-Request-Count": "374", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0667579174042", - "Connection": "Keep-Alive", - "X-Request-Count": "432", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3867" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"e420a02de94cdac2e1dfc6880979a346ed806522\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B17d2cda6-a30f-431a-8387-8c6d8bacc1b5%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{17d2cda6-a30f-431a-8387-8c6d8bacc1b5}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/e420a02de94cdac2e1dfc6880979a346ed806522\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/e420a02de94cdac2e1dfc6880979a346ed806522/comments\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/e420a02de94cdac2e1dfc6880979a346ed806522\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/e420a02de94cdac2e1dfc6880979a346ed806522\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/e420a02de94cdac2e1dfc6880979a346ed806522/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/e420a02de94cdac2e1dfc6880979a346ed806522/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"adde53c90097304295810fc7b94b724a165b5354\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/adde53c90097304295810fc7b94b724a165b5354\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/adde53c90097304295810fc7b94b724a165b5354\"}}}, {\"hash\": \"c93abb1f2807eb9da03e0c85c50f925a5838ed5a\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/c93abb1f2807eb9da03e0c85c50f925a5838ed5a\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/c93abb1f2807eb9da03e0c85c50f925a5838ed5a\"}}}], \"date\": \"2020-04-12T13:18:34+00:00\", \"message\": \"Automatically generated. Merged on Decap CMS.\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/e420a02de94cdac2e1dfc6880979a346ed806522/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0440790653229", - "Connection": "Keep-Alive", - "X-Request-Count": "1450", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "180" - }, - "response": "---\ntemplate: post\ntitle: first title\nimage: /media/netlify.png\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0558669567108", - "Connection": "Keep-Alive", - "X-Request-Count": "3179", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - } -] diff --git a/source/admin/cypress/fixtures/BitBucket Backend Media Library - Large Media__can save entry with image.json b/source/admin/cypress/fixtures/BitBucket Backend Media Library - Large Media__can save entry with image.json deleted file mode 100644 index f5adfb8..0000000 --- a/source/admin/cypress/fixtures/BitBucket Backend Media Library - Large Media__can save entry with image.json +++ /dev/null @@ -1,1094 +0,0 @@ -[ - { - "method": "GET", - "url": "/2.0/repositories/owner/repo", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0517461299896", - "Connection": "Keep-Alive", - "X-Request-Count": "2295", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2995" - }, - "response": "{\"scm\": \"git\", \"website\": null, \"has_wiki\": false, \"name\": \"repo\", \"links\": {\"watchers\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/watchers\"}, \"branches\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches\"}, \"tags\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/tags\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits\"}, \"clone\": [{\"href\": \"https://owner@bitbucket.org/owner/repo.git\", \"name\": \"https\"}, {\"href\": \"git@bitbucket.org:owner/repo.git\", \"name\": \"ssh\"}], \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"source\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/src\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}, \"hooks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/hooks\"}, \"forks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/forks\"}, \"downloads\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/downloads\"}, \"pullrequests\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests\"}}, \"fork_policy\": \"allow_forks\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\", \"language\": \"\", \"created_on\": \"2020-04-12T09:50:32.743342+00:00\", \"mainbranch\": {\"type\": \"branch\", \"name\": \"master\"}, \"full_name\": \"owner/repo\", \"has_issues\": false, \"owner\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:51:56.781321+00:00\", \"size\": 8550437, \"type\": \"repository\", \"slug\": \"repo\", \"is_private\": false, \"description\": \"\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/user", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0348291397095", - "X-Accepted-OAuth-Scopes": "account", - "Connection": "Keep-Alive", - "X-Request-Count": "1894", - "X-Version": "e1ce49ad4aa3", - "X-Frame-Options": "SAMEORIGIN", - "content-length": "1041" - }, - "response": "{\"name\":\"owner\",\"display_name\":\"owner\",\"links\":{\"avatar\":{\"href\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\"}},\"nickname\":\"owner\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0504970550537", - "Connection": "Keep-Alive", - "X-Request-Count": "1246", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3039" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/statuses\"}}, \"author\": {\"raw\": \"ownerkah \", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:50:53+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/static/media?max_depth=1&pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0341911315918", - "Connection": "Keep-Alive", - "X-Request-Count": "1310", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "78" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: static/media\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0693910121918", - "Connection": "Keep-Alive", - "X-Request-Count": "2000", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3039" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/statuses\"}}, \"author\": {\"raw\": \"ownerkah \", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:50:53+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.051206111908", - "Connection": "Keep-Alive", - "X-Request-Count": "251", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3039" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/statuses\"}}, \"author\": {\"raw\": \"ownerkah \", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:50:53+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts?max_depth=1&pagelen=20", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0560669898987", - "Connection": "Keep-Alive", - "X-Request-Count": "3052", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "6371" - }, - "response": "{\"pagelen\":20,\"values\":[{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"}},\"path\":\"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"53eb7709cda173b8c923b4bef2a51a1ce49d14af\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":1707},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"}},\"path\":\"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"53eb7709cda173b8c923b4bef2a51a1ce49d14af\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2565},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-02-02---A-Brief-History-of-Typography.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"}},\"path\":\"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"53eb7709cda173b8c923b4bef2a51a1ce49d14af\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2786},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"}},\"path\":\"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"53eb7709cda173b8c923b4bef2a51a1ce49d14af\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":16071},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"}},\"path\":\"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"53eb7709cda173b8c923b4bef2a51a1ce49d14af\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":7465}],\"page\":1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0439281463623", - "Connection": "Keep-Alive", - "X-Request-Count": "1700", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1707" - }, - "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0371129512787", - "Connection": "Keep-Alive", - "X-Request-Count": "4285", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2565" - }, - "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n \n\t \n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-02-02---A-Brief-History-of-Typography.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0650749206543", - "Connection": "Keep-Alive", - "X-Request-Count": "232", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2786" - }, - "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n\n\t\t\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.
\n\t\t\n\t\n\t \n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0896389484406", - "Connection": "Keep-Alive", - "X-Request-Count": "2592", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-02-02---A-Brief-History-of-Typography.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0974409580231", - "Connection": "Keep-Alive", - "X-Request-Count": "3356", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.100927829742", - "Connection": "Keep-Alive", - "X-Request-Count": "4743", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-18-08---The-Birth-of-Movable-Type.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0493741035461", - "Connection": "Keep-Alive", - "X-Request-Count": "1865", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "16071" - }, - "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western worldâs first major printed books, the âFortyâTwoâLineâ Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western worldâs first major printed books, the âFortyâTwoâLineâ Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 â 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n\n\t \n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information â including revolutionary ideas â transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a âsecretâ. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439â1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him âlike a ray of lightâ.\n\n\n\t
Johannes Gutenberg \n\n\t \n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fustâs son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n\n\t
Early wooden printing press as depicted in 1568. \n\n\t \n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454â55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the FustâSchöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the GutenbergâFust shop might have employed as many as 25 craftsmen.\n\n\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of âmovable typeâ.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n\n\t\t\nAll that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to followâyour grace would be able to read it without effort, and indeed without glasses.
\n\t\t\n\t\n\t \n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in âcuneiformâ style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that âthe decisive factor for the birth of typographyâ, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0412240028381", - "Connection": "Keep-Alive", - "X-Request-Count": "2062", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "7465" - }, - "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didnât mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other â the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n\n\n*The 42âLine Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But itâs the third transition that stripped it naked. Typefaces are faceless these days. Theyâre just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the âright oneâ is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\nâ Massimo Vignelli\n\nTypography is not about typefaces. Itâs not about what looks best, itâs about what feels right. What communicates the message best. Typography, in its essence, is about the message. âTypographical design should perform optically what the speaker creates through voice and gesture of his thoughts.â, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because itâs a safe option. Itâs always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still donât spot it in the street.\n\n\n\t\t\nIt is a press, certainly, but a press from which shall flow in inexhaustible streams⦠Through it, god will spread his word.
\n\t\t\n\t\n\t \n\nTypefaces donât look handmade these days. And thatâs all right. They donât have to. Industrialism took that away from them and weâre fine with it. Weâve traded that part of humanity for a process that produces more books that are easier to read. That canât be bad. And it isnât.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> â Eric Gill\n\nWeâve come close to âperfectionâ in the last five centuries. The letters are crisp and without rough edges. We print our compositions with highâprecision printers on a high quality, machine made paper.\n\n\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we donât care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. Thereâs no meaning in our work. Type sizes, leading, margins⦠Itâs all just a few clicks or lines of code. The message isnât important anymore. Thereâs no more âwhyâ behind the âwhatâ.\n\n## Chasing perfection\n\nHuman beings arenât perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2017-18-08---The-Birth-of-Movable-Type.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.103514909744", - "Connection": "Keep-Alive", - "X-Request-Count": "4189", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nKnowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0988948345184", - "Connection": "Keep-Alive", - "X-Request-Count": "1250", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name ~ \"cms/\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0479779243469", - "Connection": "Keep-Alive", - "X-Request-Count": "2000", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0446209907532", - "Connection": "Keep-Alive", - "X-Request-Count": "2953", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0366239547729", - "Connection": "Keep-Alive", - "X-Request-Count": "2492", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3039" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:50:53+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0371029376984", - "Connection": "Keep-Alive", - "X-Request-Count": "3461", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "105" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: content/posts/1970-01-01-first-title.md\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0395398139954", - "Connection": "Keep-Alive", - "X-Request-Count": "751", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3039" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/statuses\"}}, \"author\": {\"raw\": \"ownerkah \", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:50:53+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/.gitattributes", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0518090724945", - "Connection": "Keep-Alive", - "X-Request-Count": "1251", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "220" - }, - "response": "/.github export-ignore\n/.gitattributes export-ignore\n/.editorconfig export-ignore\n/.travis.yml export-ignore\n**/*.js.snap export-ignore\n*.png filter=lfs diff=lfs merge=lfs -text\n*.jpg filter=lfs diff=lfs merge=lfs -text\n", - "status": 200 - }, - { - "body": "{\"operation\":\"upload\",\"transfers\":[\"basic\"],\"objects\":[{\"size\":3470,\"oid\":\"b1d40c19b912d2130d1bed8ff1a62a55c7d932978502e1d8559eb77951c5e8d3\"}]}", - "method": "POST", - "url": "/owner/repo/info/lfs/objects/batch", - "headers": { - "bbr1private": "0", - "bbr1wikiprivate": "0", - "Server": "nginx", - "Vary": "Authorization", - "bbr1repouuid": "97c5226e-9ffb-42c4-948d-3d785a9d0c46", - "Cache-Control": "no-cache", - "Content-Type": "application/vnd.git-lfs+json", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "X-Usage-Output-Ops": "0", - "bbr1reposlug": "repo", - "bbr1hasadmin": "1", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "bbr1scm": "git", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Usage-User-Time": "0.034110", - "X-Usage-System-Time": "0.006559", - "bbuserid": "6965054", - "bbauthhash": "", - "X-Served-By": "app-163", - "X-Consumer-Client-Id": "ATfdeqkMFdgQA3S8Tr", - "bbr1ownerid": "6965054", - "bbr1hasread": "1", - "bbr1issuesprivate": "0", - "bbr1haswrite": "1", - "bbr1size": "8550437", - "X-Usage-Throttled": "True", - "Access-Control-Allow-Origin": "*", - "X-View-Name": "bitbucket.apps.lfs.clientapi.batch.ObjectsBatchHandler", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0550019741058", - "Connection": "Keep-Alive", - "bbusername": "owner", - "X-Token-Id": "47401645", - "X-Usage-Input-Ops": "0", - "X-Request-Count": "660", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "bbr1owner": "owner", - "Content-Length": "104", - "bbr1id": "64027664" - }, - "response": "{\"objects\": [{\"oid\": \"b1d40c19b912d2130d1bed8ff1a62a55c7d932978502e1d8559eb77951c5e8d3\", \"size\": 3470}]}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0499708652496", - "Connection": "Keep-Alive", - "X-Request-Count": "3415", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3039" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/statuses\"}}, \"author\": {\"raw\": \"ownerkah \", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:50:53+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "body": "------WebKitFormBoundary2KeJERVVRd9t2D3P\r\nContent-Disposition: form-data; name=\"content/posts/1970-01-01-first-title.md\"; filename=\"1970-01-01-first-title.md\"\r\nContent-Type: application/octet-stream\r\n\r\n---\ntemplate: post\ntitle: first title\nimage: /media/netlify.png\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\r\n------WebKitFormBoundary2KeJERVVRd9t2D3P\r\nContent-Disposition: form-data; name=\"static/media/netlify.png\"; filename=\"netlify.png\"\r\nContent-Type: text/plain\r\n\r\nversion https://git-lfs.github.com/spec/v1\noid sha256:b1d40c19b912d2130d1bed8ff1a62a55c7d932978502e1d8559eb77951c5e8d3\nsize 3470\n\r\n------WebKitFormBoundary2KeJERVVRd9t2D3P\r\nContent-Disposition: form-data; name=\"message\"\r\n\r\nCreate Post â1970-01-01-first-titleâ\r\n------WebKitFormBoundary2KeJERVVRd9t2D3P\r\nContent-Disposition: form-data; name=\"branch\"\r\n\r\ncms/posts/1970-01-01-first-title\r\n------WebKitFormBoundary2KeJERVVRd9t2D3P\r\nContent-Disposition: form-data; name=\"parents\"\r\n\r\n53eb7709cda173b8c923b4bef2a51a1ce49d14af\r\n------WebKitFormBoundary2KeJERVVRd9t2D3P--\r\n", - "method": "POST", - "url": "/2.0/repositories/owner/repo/src", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "text/html; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/commit/063f2387f18f03544f563699e3b55ada9207b6c7", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.521929979324", - "Connection": "Keep-Alive", - "X-Request-Count": "2627", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "0" - }, - "response": null, - "status": 201 - }, - { - "body": "{\"title\":\"Create Post “1970-01-01-first-title”\",\"source\":{\"branch\":{\"name\":\"cms/posts/1970-01-01-first-title\"}},\"destination\":{\"branch\":{\"name\":\"master\"}},\"description\":\"Automatically generated by Decap CMS\",\"close_source_branch\":true}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.234686851501", - "Connection": "Keep-Alive", - "X-Request-Count": "2393", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "5236" - }, - "response": "{\"rendered\": {\"description\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \" Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"title\": {\"raw\": \"Create Post “1970-01-01-first-title”\", \"markup\": \"markdown\", \"html\": \"Create Post “1970-01-01-first-title”
\", \"type\": \"rendered\"}}, \"type\": \"pullrequest\", \"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:063f2387f18f%0D53eb7709cda1?from_pullrequest_id=1\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:063f2387f18f%0D53eb7709cda1?from_pullrequest_id=1\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"reviewers\": [], \"id\": 1, \"destination\": {\"commit\": {\"hash\": \"53eb7709cda1\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda1\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:52:31.815338+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"063f2387f18f\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/063f2387f18f\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/063f2387f18f\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 0, \"state\": \"OPEN\", \"task_count\": 0, \"participants\": [], \"reason\": \"\", \"updated_on\": \"2020-04-12T09:52:31.841070+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}", - "status": 201 - }, - { - "body": "{\"content\":{\"raw\":\"decap-cms/draft\"}}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/1/comments", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144752668", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0825178623199", - "Connection": "Keep-Alive", - "X-Request-Count": "941", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1547" - }, - "response": "{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144752668\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1/_/diff#comment-144752668\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 1, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:52:32.654542+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:52:32.656994+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752668}", - "status": 201 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0970659255981", - "Connection": "Keep-Alive", - "X-Request-Count": "3543", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4908" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:063f2387f18f%0D53eb7709cda1?from_pullrequest_id=1\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:063f2387f18f%0D53eb7709cda1?from_pullrequest_id=1\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 1, \"destination\": {\"commit\": {\"hash\": \"53eb7709cda1\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda1\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:52:31.815338+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"063f2387f18f\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/063f2387f18f\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/063f2387f18f\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:52:32.656994+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/1/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0798528194427", - "Connection": "Keep-Alive", - "X-Request-Count": "4409", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1599" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144752668\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1/_/diff#comment-144752668\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 1, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:52:32.654542+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:52:32.656994+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752668}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/diff/cms/posts/1970-01-01-first-title..master?binary=false", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "must-revalidate, max-age=0", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.129162073135", - "Connection": "Keep-Alive", - "X-Request-Count": "3428", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "738" - }, - "response": "diff --git a/content/posts/1970-01-01-first-title.md b/content/posts/1970-01-01-first-title.md\nnew file mode 100644\nindex 0000000..5712f24\n--- /dev/null\n+++ b/content/posts/1970-01-01-first-title.md\n@@ -0,0 +1,11 @@\n+---\n+template: post\n+title: first title\n+image: /media/netlify.png\n+date: 1970-01-01T00:00:00.000Z\n+description: first description\n+category: first category\n+tags:\n+ - tag1\n+---\n+first body\n\\ No newline at end of file\ndiff --git a/static/media/netlify.png b/static/media/netlify.png\nnew file mode 100644\nindex 0000000..a137fb3\n--- /dev/null\n+++ b/static/media/netlify.png\n@@ -0,0 +1,3 @@\n+version https://git-lfs.github.com/spec/v1\n+oid sha256:b1d40c19b912d2130d1bed8ff1a62a55c7d932978502e1d8559eb77951c5e8d3\n+size 3470\n", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/1/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0937149524689", - "Connection": "Keep-Alive", - "X-Request-Count": "408", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1599" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144752668\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1/_/diff#comment-144752668\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 1, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:52:32.654542+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:52:32.656994+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752668}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0665729045868", - "Connection": "Keep-Alive", - "X-Request-Count": "530", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3710" - }, - "response": "{\"name\": \"cms/posts/1970-01-01-first-title\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/cms/posts/1970-01-01-first-title\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/cms/posts/1970-01-01-first-title\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"063f2387f18f03544f563699e3b55ada9207b6c7\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/063f2387f18f03544f563699e3b55ada9207b6c7\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/063f2387f18f03544f563699e3b55ada9207b6c7/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/063f2387f18f03544f563699e3b55ada9207b6c7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/063f2387f18f03544f563699e3b55ada9207b6c7\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/063f2387f18f03544f563699e3b55ada9207b6c7\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/063f2387f18f03544f563699e3b55ada9207b6c7/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/063f2387f18f03544f563699e3b55ada9207b6c7/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}}], \"date\": \"2020-04-12T09:52:30+00:00\", \"message\": \"Create Post “1970-01-01-first-title”\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/063f2387f18f03544f563699e3b55ada9207b6c7/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0435309410095", - "Connection": "Keep-Alive", - "X-Request-Count": "3534", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "180" - }, - "response": "---\ntemplate: post\ntitle: first title\nimage: /media/netlify.png\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0627529621124", - "Connection": "Keep-Alive", - "X-Request-Count": "4544", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3710" - }, - "response": "{\"name\": \"cms/posts/1970-01-01-first-title\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/cms/posts/1970-01-01-first-title\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/cms/posts/1970-01-01-first-title\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"063f2387f18f03544f563699e3b55ada9207b6c7\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/063f2387f18f03544f563699e3b55ada9207b6c7\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/063f2387f18f03544f563699e3b55ada9207b6c7/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/063f2387f18f03544f563699e3b55ada9207b6c7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/063f2387f18f03544f563699e3b55ada9207b6c7\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/063f2387f18f03544f563699e3b55ada9207b6c7\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/063f2387f18f03544f563699e3b55ada9207b6c7/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/063f2387f18f03544f563699e3b55ada9207b6c7/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}}], \"date\": \"2020-04-12T09:52:30+00:00\", \"message\": \"Create Post “1970-01-01-first-title”\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/063f2387f18f03544f563699e3b55ada9207b6c7/static/media/netlify.png", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "text/html; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.media.atlassian.com/file/b851259d-0ea4-4c32-808d-5d73b564ac66/binarytoken=fakeTokenclient=fakeClient&dl=1&name=netlify.png", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0512518882751", - "Connection": "Keep-Alive", - "X-Request-Count": "3176", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "0" - }, - "response": null, - "status": 302 - }, - { - "method": "GET", - "url": "/file/b851259d-0ea4-4c32-808d-5d73b564ac66/binarytoken=fakeTokenclient=fakeClient&dl=1&name=netlify.png", - "headers": { - "Content-Type": "image/png", - "Content-Length": "3470", - "Server": "globaledge-envoy", - "X-B3-Traceid": "60de945933643e9e", - "X-B3-Spanid": "5b542eaf85fe7803", - "X-B3-Parentspanid": "13693481fbd48f49", - "X-B3-Sampled": "1", - "X-Dns-Prefetch-Control": "off", - "X-Frame-Options": "SAMEORIGIN", - "X-Download-Options": "noopen", - "Access-Control-Allow-Origin": "*", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Range, X-Media-Region", - "X-Media-Region": "us-west-1", - "Content-Security-Policy": "script-src 'none'", - "Timing-Allow-Origin": "*", - "Accept-Ranges": "bytes", - "Content-Disposition": "attachment; filename=\"netlify.png\"", - "Cache-Control": "private", - "Atl-Traceid": "60de945933643e9e", - "X-Envoy-Upstream-Service-Time": "127", - "Expect-Ct": "report-uri=\"https://web-security-reports.services.atlassian.com/expect-ct-report/dt-api-filestore\", max-age=86400", - "X-Logging-Id": "V1xZRhzmw", - "Strict-Transport-Security": "max-age=63072000; preload", - "X-Content-Type-Options": "nosniff", - "X-Xss-Protection": "1; mode=block" - }, - "response": { - "encoding": "base64", - "content": "iVBORw0KGgoAAAANSUhEUgAAAJcAAACXCAMAAAAvQTlLAAAAwFBMVEX///85rbswtrpAp71DpL03sLs8q7xGob4tubkzs7o+qLwqvLknv7gkwrgpvbhIn75Mm7/x+vrs9fhktcfn9/bg8PMtp7lSr8IWw7U7yL3Y7vAAq7JSzMM+w75MwMGj2dxmv8iLx9O73ORcrMRorMeJ2tJr1MlTx8N8z8+45uWs4OBQu8HH5ulTuMMXqbaW0Ndxvsuq1t4jnrd6ss2TwNUwj7ii4tzP8Ox00syR19ZkxseByNCezdnP5Ox2tsyDv9FhQXEFAAAMiUlEQVR4nO2ci1biyBaGDTcBUaxAEjuoQLQHEQhJ2j7TCLTv/1anau8kdU3wwsW1zvlnVg9UKlVf/r1rVyFjn539X6cSOTWASf2f/9z+87N/agxF5OcN6uf3Mu32JtPtqVEE9X/ccP34NrEktzeibr9JKCW3vo9j1K1L+g/X5bdwrP/jkkqgYjq9Y/3bSxSz7PImfXN5e2Kw/qWoG+H1ScFyt3T9PCXWj0KsU/pV4tblf06HRX5cdoqw/kClOIlnZNKhKovi/O4EYKQDMlsGUezfdTpHL7D9SSeXhoX1/olemhzZMXLXESVRdS7/ZV3+hSt3R3VMdEsTli5yi++OmWOKW4omYNEqfXd1PMdK3ep0IIq+wHkkx8gVVeeqCOsJ+qToV6CjONaf4GQFYHdiFNOex3CM3F1dlIFNgV3Curg4fI71JxdUV1dFaH+g16tAdcVuOLRj5O4CpZPBqyuY/zlnSrEO7Ri6JYMBW4aHUdSoDu3Y08WVESzDm0CvPzkU731gx/zVnTCVxgaeTDWvmJrN1QG5aIY9TwrJnqHDHTNKhrpoUq75Qbmopk8XYoRyrFe4+qQ6hW41m4eJI3ld8cx1VtrMVxcdn12am6GoDoJl39ORX+f5M5PpHxUM8ofcFWHdA7WzXyxynw7+zMn8V2n69BhhhqKCffNpv9Hs3/PxVzx/+8MJi9pk9Tx9XmEUC7GasCgmzfs91jEiYLFwTvmV6eSCW0g7FlGly5FZvjfH+rNKpSLN0RzyPBGnWWVJ35SZmJifdpOONNuTY+S+UtHA7p98wwMwIBMTu4E9yZxxVfbjWB+xNLLm/VR78FcTURp8BvOMA+0jx0iOZSBbKU8+L+aC5bhKx/m6Y30RS+VqqsWSFHNBdXvKBvqqY5JbpjRT+j8VcrE1TF7zYb7mWL/V0rgoGYd71e5Y3etM7D6W9n0+TKvyBcfIfUsHkz0zPMuzTFYBrAHzxx9kVFSfd6w/a6FK0AzV4uzsXx7O/AbWHgw4FgX7pGMkwzKCpWRP5nudIUY77w0Bz5YjDjqofMqx/n1LkIkM2KbCLVPhwEHfNIWeS9b0yqFardnwc1iz1m4uKmFF+pTzdSgeOAZ5N8DnVIPZ/JPpZbcUVcxs+enCTot5RdihyHAmdLNTrMFs/YVj2FwFM3Jhfk3n09VMaBQPHGgaY/UHmFbCpu8sP27bcvAOMjwM6u3C3P5qNkTGUWvQGvHjG5mPBuFHThc23EtmGpfGBoc93xhgIZz51EMpxqNBnWr2bsf69boN8xm5RDKM4szIVRnM9ANHLn9No1FHvdMxsqiHa3i1DAvIMjYYcWjGYpqtzAk+X8MgKdfoXY7ZrGsIATobFXIBG6SNOYogluUj7eOsM2wNOBSbDMOz0y0QPINfL+OCo97ZazEUaCC74a+BSsCiWux0zF6Eqbnwdhi2CtEGEKNhixFkxQ1etipSN+W5hzOVijq22OFYjlWvx9AwqhdxDWBr0cqv0mmw0uJIy0NYV1UOZi8s3hWWtAMvTVPi+i7PwNnQPJ2zXihcVhmYPbKsek42grY4NIMN8HOsXnt5j9m8eC47ngmm0VmtUWFnYoHyoEOgWCRNZHDRMZdekGkPJGthu/ZH9RQN57UKkp8G0ZLJhEgCmgCHUVwX2DVoCfvQfJ1tgs4oDEfC8cZfWiHHKnCM5FgZmIXLdxpysIysPIojcd+e0U6sN5kv02HWwiE3GFlhNmvDVC7sRaPRsGS0NJJraflgkGBOUxTpChQ2xiWjas2YEc/5KNQ04TQ5X4cpWaOhJ7/dsGQuBINF3lcWT6u1gA1obcCaiefCpxarVC1cQUt5kCHfFe3lArEogwJmL9xGwwCGzs6VeoO4vrZ70k2HR2I+atXT+gm2r6UhaGKteWWzgwjnd5VQNrCZEUtk6QYuRxKfn56mlL1AWIH9ofgYQ+heV2TVFwGncCJgcBsiVpRhaZ6FATDIkYT5l5yV8oUzaQXWxQcBe526LFayrHCx5HfZsee6DTfiWGMRSw2mrUYyjDGKQktdPIXGai0P2RC+pbRm5SHaCrGnprnj3EIZSyHTIrmABh6W0FryFegvF9rmF7ILgdQsTuD2Yk62HbtJZuFY4xLB0B4hPQAizqdZxGKuq0z5g/CwW5Ig2xtjMZxxnl06mEjmiHFDTDt7JywqEhjOCfVs7YxMWFCcgMyN9A+U9nzjefSSSpfdjefc9IExiumiF7N2aWLiT2LpVlniZK7rxYZ9iGyDTdTW2DCSG4xkyJRFkRZtYRxlBcpcYGmoUVkNRTSc5u+QbCceq8bBCLiBL4P5BpONrUCfF3a6AgupaEFgdzthOVNmWi8wkkFU43FPYGOjKFV4bQkB9JclUBB5ZmvwHqw2lettisioAzTlIoaPA1i8poBx8goso4IDH+u33AkFVFSJMFccm75Q8mnKsajSgczu2rFerJBGTHJYjuOdVBmXUO/PSLvq9caBoy1VwlLOasRqO9g25gdJ+Q9Z7GYSlULlZrXbnvzkvSqLrRstA18/nBmOa2QehTqCSS78iGlRwiRi9dSDjoftLiWOqHPGuHGqeLEbKONiY/mNYq62IE8/GPaEy7TIRbHJuSyE76aiXOyGuWFH0bmqqlvoWFUggypG4QrYxg33PUywz7D+cQGX6BXNceMHD8kxhtZglcL11qbexI+XERYSM1EmPE9FZi55QpNbMFdbAWOuNZaFuUZsP1jT3YN2Kk5qF9ayEUrBahemDa5KMc+iwm2B09H9gTlXxAUj6FcVpqoxt3IwryqSjY3fZhid28ZQgtX5aQt8T6u2tzUsc24JjmVgvQ3vqdwT9JZzw4Kwg+XYk9jc9MkCtwyKUpW6BWNTxyha0gt4xyBS7tqwyRfRxvDdgO0EsOsjSHZs8d1iKEa1wy0YuFdNvA0PoBPTWhspAPhpk80exVt99zpzAlisfJS0fulQiLXLLQQTznvOG+wDap5t8+dnbL1oY0hE298K79hnCCMS6B1Y4siBl8D9eKQPfMfxA7ROSRhGNw62JbuX4xZT9T70nQfZZGsA7xu7bc9rZx/vetrKZykVjeMiNtc1Q70ntwSo7VuS3pZGcZ6kI2JByvZ5Vh4V57xx4OtTke3mrdd2E5XqQ1hnOVW1iudHwjcpF+yL9cDkHdw2TbnAuFg3vXaSCFTJh7DSciFEf5zwefFEGRVyZXQFIaWV5M2rpnQfyy0Klj8QhM1no7SzkgtNjrcDrF3yAYLurGNqXPLBlXjGAodcGEVuH2NLYLTtLi6hvGwDx0Cw3XziS1vbqzEMCEYsJir1DSMpxtYoLwPbVpOq97bZdQx+n8hDrVrDkCVVWQl+Ase1UC2g4v3G6f00cN5ma3LuQ7K9pAcvelVV+LOgbYL2wb9t/K8sMDaQFmBS7VHnvsRGcN/a1DSudB1tVCNVQXa+yW00CrUkqY3LZt4Fxv6w6TgaWRbJcqwkVrlqmT6+ElVFfCxxSvxZyg6urQBfE/Xw5f8DLBBGqwpoGMm4NJJQUByViWF92a2zB3XMWhXwkje4HJVysR5bbYA9uEXTSwcD52oQJFpD9FWB5LQX/LAhSA7g1hnUMbNwy02n1UJFhYtjo3Ltwy0ms2N0WozkWwE27QBVuXcQt5iKHMN5iVfIBZFWnNyXW0xFjj2IkTQIdgX56v7cYipy7C9cHRdgAYMjce3TLSb74dw0cxrJAi6gFt08369bMLcZDEPlm7lwOYpYB/hdCuoYU03Bw0huaibh7kh52G1U+3eLiSAYTlEDvvOsRhl2hXQ5ZncxrAP9BpHNp8hFIfEohoFK4wW2np/b0k2HcYuJ1HSwzIZNjZNmrwA4f3vA37cyOXZ+/gLX/urAItfh3CoEq+EGrrXDNhUfA6vIMSIQcMGKeDsKlrS+dkUSbESsI/yGrdEx/FmK3NZ1Mq7Du8VEDFw13MCltkc7Yz3Sb3Dbj10NDI9iL+KFvwwn6CLfUUS6GlgXI/mgor50j5FbmahjlAzokLDb7eLPUnhbF5fj8dwCsK6mdAPnDbAc/x4VCx1ThBs4b2fLkRz9L8YwOIYbePbu+thEGZjm2CO055E8EZfBMYzkLzHfTgKmOZZu4BDGkp+uHhwszSQeSfwyhDVcb3fdfUiwx2sBjf6BG/jLdff6uHVLA6Mw8M81haJ/oEs2fXFSLFqgHq8FdVOe7ePJ/8Y0u3stCSN5YrcAQXLs+vfub+qPJNWxb+AVSnHs5dQ8uezv6RfVr99Zev06NYqsFwT7/X2CmMp5+fXr18ue/3qJ/ejktfR/WP8FOoK2QLx2JrUAAAAASUVORK5CYII=" - }, - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0862510204315", - "Connection": "Keep-Alive", - "X-Request-Count": "3977", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4908" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:063f2387f18f%0D53eb7709cda1?from_pullrequest_id=1\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:063f2387f18f%0D53eb7709cda1?from_pullrequest_id=1\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 1, \"destination\": {\"commit\": {\"hash\": \"53eb7709cda1\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda1\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:52:31.815338+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \" Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"063f2387f18f\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/063f2387f18f\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/063f2387f18f\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:52:32.656994+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/1/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.087121963501", - "Connection": "Keep-Alive", - "X-Request-Count": "866", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1599" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144752668\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1/_/diff#comment-144752668\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 1, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:52:32.654542+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:52:32.656994+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752668}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/1/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0406150817871", - "Connection": "Keep-Alive", - "X-Request-Count": "2712", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - } -] diff --git a/source/admin/cypress/fixtures/BitBucket Backend Media Library - Large Media__can upload image from entry media library.json b/source/admin/cypress/fixtures/BitBucket Backend Media Library - Large Media__can upload image from entry media library.json deleted file mode 100644 index 8fb09a6..0000000 --- a/source/admin/cypress/fixtures/BitBucket Backend Media Library - Large Media__can upload image from entry media library.json +++ /dev/null @@ -1,450 +0,0 @@ -[ - { - "method": "GET", - "url": "/2.0/repositories/owner/repo", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0460169315338", - "Connection": "Keep-Alive", - "X-Request-Count": "2879", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2995" - }, - "response": "{\"scm\": \"git\", \"website\": null, \"has_wiki\": false, \"name\": \"repo\", \"links\": {\"watchers\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/watchers\"}, \"branches\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches\"}, \"tags\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/tags\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits\"}, \"clone\": [{\"href\": \"https://owner@bitbucket.org/owner/repo.git\", \"name\": \"https\"}, {\"href\": \"git@bitbucket.org:owner/repo.git\", \"name\": \"ssh\"}], \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"source\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/src\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}, \"hooks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/hooks\"}, \"forks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/forks\"}, \"downloads\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/downloads\"}, \"pullrequests\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests\"}}, \"fork_policy\": \"allow_forks\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\", \"language\": \"\", \"created_on\": \"2020-04-12T09:50:32.743342+00:00\", \"mainbranch\": {\"type\": \"branch\", \"name\": \"master\"}, \"full_name\": \"owner/repo\", \"has_issues\": false, \"owner\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:51:56.781321+00:00\", \"size\": 8550437, \"type\": \"repository\", \"slug\": \"repo\", \"is_private\": false, \"description\": \"\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/user", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0372281074524", - "X-Accepted-OAuth-Scopes": "account", - "Connection": "Keep-Alive", - "X-Request-Count": "628", - "X-Version": "e1ce49ad4aa3", - "X-Frame-Options": "SAMEORIGIN", - "content-length": "1041" - }, - "response": "{\"name\":\"owner\",\"display_name\":\"owner\",\"links\":{\"avatar\":{\"href\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\"}},\"nickname\":\"owner\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0532479286194", - "Connection": "Keep-Alive", - "X-Request-Count": "4236", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3039" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:50:53+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0408670902252", - "Connection": "Keep-Alive", - "X-Request-Count": "3468", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3039" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/statuses\"}}, \"author\": {\"raw\": \"ownerkah \", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:50:53+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/static/media?max_depth=1&pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0580630302429", - "Connection": "Keep-Alive", - "X-Request-Count": "624", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "78" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: static/media\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0425131320953", - "Connection": "Keep-Alive", - "X-Request-Count": "1238", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3039" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/statuses\"}}, \"author\": {\"raw\": \"ownerkah \", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:50:53+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts?max_depth=1&pagelen=20", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0501408576965", - "Connection": "Keep-Alive", - "X-Request-Count": "4026", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "6371" - }, - "response": "{\"pagelen\":20,\"values\":[{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"}},\"path\":\"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"53eb7709cda173b8c923b4bef2a51a1ce49d14af\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":1707},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"}},\"path\":\"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"53eb7709cda173b8c923b4bef2a51a1ce49d14af\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2565},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-02-02---A-Brief-History-of-Typography.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"}},\"path\":\"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"53eb7709cda173b8c923b4bef2a51a1ce49d14af\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2786},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"}},\"path\":\"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"53eb7709cda173b8c923b4bef2a51a1ce49d14af\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":16071},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"}},\"path\":\"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"53eb7709cda173b8c923b4bef2a51a1ce49d14af\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":7465}],\"page\":1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-02-02---A-Brief-History-of-Typography.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0484139919281", - "Connection": "Keep-Alive", - "X-Request-Count": "2751", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2786" - }, - "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n \n\t \n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0433490276337", - "Connection": "Keep-Alive", - "X-Request-Count": "2460", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1707" - }, - "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.112519979477", - "Connection": "Keep-Alive", - "X-Request-Count": "3308", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0570499897003", - "Connection": "Keep-Alive", - "X-Request-Count": "4139", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2565" - }, - "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n\n\t \n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.114252090454", - "Connection": "Keep-Alive", - "X-Request-Count": "3164", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-02-02---A-Brief-History-of-Typography.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.128967046738", - "Connection": "Keep-Alive", - "X-Request-Count": "4274", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-18-08---The-Birth-of-Movable-Type.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0417950153351", - "Connection": "Keep-Alive", - "X-Request-Count": "3681", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "16071" - }, - "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western worldâs first major printed books, the âFortyâTwoâLineâ Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western worldâs first major printed books, the âFortyâTwoâLineâ Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 â 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n\n\t \n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information â including revolutionary ideas â transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a âsecretâ. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439â1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him âlike a ray of lightâ.\n\n\n\t
Johannes Gutenberg \n\n\t \n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fustâs son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n\n\t
Early wooden printing press as depicted in 1568. \n\n\t \n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454â55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the FustâSchöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the GutenbergâFust shop might have employed as many as 25 craftsmen.\n\n\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of âmovable typeâ.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n\n\t\t\nAll that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to followâyour grace would be able to read it without effort, and indeed without glasses.
\n\t\t\n\t\n\t \n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in âcuneiformâ style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that âthe decisive factor for the birth of typographyâ, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0343861579895", - "Connection": "Keep-Alive", - "X-Request-Count": "1583", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "7465" - }, - "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didnât mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other â the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n\n\n*The 42âLine Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But itâs the third transition that stripped it naked. Typefaces are faceless these days. Theyâre just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the âright oneâ is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\nâ Massimo Vignelli\n\nTypography is not about typefaces. Itâs not about what looks best, itâs about what feels right. What communicates the message best. Typography, in its essence, is about the message. âTypographical design should perform optically what the speaker creates through voice and gesture of his thoughts.â, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because itâs a safe option. Itâs always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still donât spot it in the street.\n\n\n\t\t\nIt is a press, certainly, but a press from which shall flow in inexhaustible streams⦠Through it, god will spread his word.
\n\t\t\n\t\n\t \n\nTypefaces donât look handmade these days. And thatâs all right. They donât have to. Industrialism took that away from them and weâre fine with it. Weâve traded that part of humanity for a process that produces more books that are easier to read. That canât be bad. And it isnât.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> â Eric Gill\n\nWeâve come close to âperfectionâ in the last five centuries. The letters are crisp and without rough edges. We print our compositions with highâprecision printers on a high quality, machine made paper.\n\n\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we donât care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. Thereâs no meaning in our work. Type sizes, leading, margins⦠Itâs all just a few clicks or lines of code. The message isnât important anymore. Thereâs no more âwhyâ behind the âwhatâ.\n\n## Chasing perfection\n\nHuman beings arenât perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2017-18-08---The-Birth-of-Movable-Type.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0995798110962", - "Connection": "Keep-Alive", - "X-Request-Count": "978", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nKnowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.200741052628", - "Connection": "Keep-Alive", - "X-Request-Count": "2711", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - } -] \ No newline at end of file diff --git a/source/admin/cypress/fixtures/BitBucket Backend Media Library - Large Media__can upload image from global media library.json b/source/admin/cypress/fixtures/BitBucket Backend Media Library - Large Media__can upload image from global media library.json deleted file mode 100644 index 3e93024..0000000 --- a/source/admin/cypress/fixtures/BitBucket Backend Media Library - Large Media__can upload image from global media library.json +++ /dev/null @@ -1,701 +0,0 @@ -[ - { - "method": "GET", - "url": "/2.0/repositories/owner/repo", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0482079982758", - "Connection": "Keep-Alive", - "X-Request-Count": "365", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2995" - }, - "response": "{\"scm\": \"git\", \"website\": null, \"has_wiki\": false, \"name\": \"repo\", \"links\": {\"watchers\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/watchers\"}, \"branches\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches\"}, \"tags\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/tags\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits\"}, \"clone\": [{\"href\": \"https://owner@bitbucket.org/owner/repo.git\", \"name\": \"https\"}, {\"href\": \"git@bitbucket.org:owner/repo.git\", \"name\": \"ssh\"}], \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"source\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/src\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}, \"hooks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/hooks\"}, \"forks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/forks\"}, \"downloads\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/downloads\"}, \"pullrequests\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests\"}}, \"fork_policy\": \"allow_forks\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\", \"language\": \"\", \"created_on\": \"2020-04-12T09:50:32.743342+00:00\", \"mainbranch\": {\"type\": \"branch\", \"name\": \"master\"}, \"full_name\": \"owner/repo\", \"has_issues\": false, \"owner\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:50:58.334114+00:00\", \"size\": 4282777, \"type\": \"repository\", \"slug\": \"repo\", \"is_private\": false, \"description\": \"\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/user", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0418930053711", - "X-Accepted-OAuth-Scopes": "account", - "Connection": "Keep-Alive", - "X-Request-Count": "4714", - "X-Version": "e1ce49ad4aa3", - "X-Frame-Options": "SAMEORIGIN", - "content-length": "1041" - }, - "response": "{\"name\":\"owner\",\"display_name\":\"owner\",\"links\":{\"avatar\":{\"href\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\"}},\"nickname\":\"owner\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0578680038452", - "Connection": "Keep-Alive", - "X-Request-Count": "2608", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3039" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:50:53+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0559170246124", - "Connection": "Keep-Alive", - "X-Request-Count": "3245", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3039" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/statuses\"}}, \"author\": {\"raw\": \"ownerkah \", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:50:53+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/static/media?max_depth=1&pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0535500049591", - "Connection": "Keep-Alive", - "X-Request-Count": "60", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "78" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: static/media\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0515730381012", - "Connection": "Keep-Alive", - "X-Request-Count": "4208", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3039" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/statuses\"}}, \"author\": {\"raw\": \"ownerkah \", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:50:53+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.038596868515", - "Connection": "Keep-Alive", - "X-Request-Count": "4821", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3039" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/statuses\"}}, \"author\": {\"raw\": \"ownerkah \", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:50:53+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts?max_depth=1&pagelen=20", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.103760957718", - "Connection": "Keep-Alive", - "X-Request-Count": "4371", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "6371" - }, - "response": "{\"pagelen\":20,\"values\":[{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"}},\"path\":\"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"53eb7709cda173b8c923b4bef2a51a1ce49d14af\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":1707},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"}},\"path\":\"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"53eb7709cda173b8c923b4bef2a51a1ce49d14af\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2565},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-02-02---A-Brief-History-of-Typography.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"}},\"path\":\"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"53eb7709cda173b8c923b4bef2a51a1ce49d14af\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2786},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"}},\"path\":\"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"53eb7709cda173b8c923b4bef2a51a1ce49d14af\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":16071},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"}},\"path\":\"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"53eb7709cda173b8c923b4bef2a51a1ce49d14af\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":7465}],\"page\":1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/.gitattributes", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0516040325165", - "Connection": "Keep-Alive", - "X-Request-Count": "3711", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "220" - }, - "response": "/.github export-ignore\n/.gitattributes export-ignore\n/.editorconfig export-ignore\n/.travis.yml export-ignore\n**/*.js.snap export-ignore\n*.png filter=lfs diff=lfs merge=lfs -text\n*.jpg filter=lfs diff=lfs merge=lfs -text\n", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-02-02---A-Brief-History-of-Typography.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0357220172882", - "Connection": "Keep-Alive", - "X-Request-Count": "684", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2786" - }, - "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n \n\t \n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0483231544495", - "Connection": "Keep-Alive", - "X-Request-Count": "3457", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2565" - }, - "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n\n\t\t\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.
\n\t\t\n\t\n\t \n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0529310703278", - "Connection": "Keep-Alive", - "X-Request-Count": "2742", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1707" - }, - "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.14102602005", - "Connection": "Keep-Alive", - "X-Request-Count": "889", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2017-18-08---The-Birth-of-Movable-Type.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.200704097748", - "Connection": "Keep-Alive", - "X-Request-Count": "1850", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0583119392395", - "Connection": "Keep-Alive", - "X-Request-Count": "4802", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "7465" - }, - "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didnât mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other â the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n\n\n*The 42âLine Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But itâs the third transition that stripped it naked. Typefaces are faceless these days. Theyâre just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the âright oneâ is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\nâ Massimo Vignelli\n\nTypography is not about typefaces. Itâs not about what looks best, itâs about what feels right. What communicates the message best. Typography, in its essence, is about the message. âTypographical design should perform optically what the speaker creates through voice and gesture of his thoughts.â, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because itâs a safe option. Itâs always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still donât spot it in the street.\n\n\n\t \n\nTypefaces donât look handmade these days. And thatâs all right. They donât have to. Industrialism took that away from them and weâre fine with it. Weâve traded that part of humanity for a process that produces more books that are easier to read. That canât be bad. And it isnât.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> â Eric Gill\n\nWeâve come close to âperfectionâ in the last five centuries. The letters are crisp and without rough edges. We print our compositions with highâprecision printers on a high quality, machine made paper.\n\n\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we donât care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. Thereâs no meaning in our work. Type sizes, leading, margins⦠Itâs all just a few clicks or lines of code. The message isnât important anymore. Thereâs no more âwhyâ behind the âwhatâ.\n\n## Chasing perfection\n\nHuman beings arenât perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-18-08---The-Birth-of-Movable-Type.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0549581050873", - "Connection": "Keep-Alive", - "X-Request-Count": "3371", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "16071" - }, - "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western worldâs first major printed books, the âFortyâTwoâLineâ Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western worldâs first major printed books, the âFortyâTwoâLineâ Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 â 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n\n\t\t\nKnowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.
\n\t\t\n\t\n\t \n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information â including revolutionary ideas â transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a âsecretâ. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439â1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him âlike a ray of lightâ.\n\n\n\t
Johannes Gutenberg \n\n\t \n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fustâs son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n\n\t
Early wooden printing press as depicted in 1568. \n\n\t \n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454â55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the FustâSchöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the GutenbergâFust shop might have employed as many as 25 craftsmen.\n\n\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of âmovable typeâ.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n\n\t\t\nAll that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to followâyour grace would be able to read it without effort, and indeed without glasses.
\n\t\t\n\t\n\t \n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in âcuneiformâ style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that âthe decisive factor for the birth of typographyâ, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.108758926392", - "Connection": "Keep-Alive", - "X-Request-Count": "720", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nIt is a press, certainly, but a press from which shall flow in inexhaustible streams⦠Through it, god will spread his word.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.114647865295", - "Connection": "Keep-Alive", - "X-Request-Count": "2595", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-02-02---A-Brief-History-of-Typography.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.110704898834", - "Connection": "Keep-Alive", - "X-Request-Count": "4425", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "body": "{\"operation\":\"upload\",\"transfers\":[\"basic\"],\"objects\":[{\"size\":3470,\"oid\":\"b1d40c19b912d2130d1bed8ff1a62a55c7d932978502e1d8559eb77951c5e8d3\"}]}", - "method": "POST", - "url": "/owner/repo/info/lfs/objects/batch", - "headers": { - "bbr1private": "0", - "bbr1wikiprivate": "0", - "Server": "nginx", - "Vary": "Authorization", - "bbr1repouuid": "97c5226e-9ffb-42c4-948d-3d785a9d0c46", - "Cache-Control": "no-cache", - "Content-Type": "application/vnd.git-lfs+json", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "X-Usage-Output-Ops": "0", - "bbr1reposlug": "repo", - "bbr1hasadmin": "1", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "bbr1scm": "git", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Usage-User-Time": "0.054207", - "X-Usage-System-Time": "0.012256", - "bbuserid": "6965054", - "bbauthhash": "", - "X-Served-By": "app-135", - "X-Consumer-Client-Id": "ATfdeqkMFdgQA3S8Tr", - "bbr1ownerid": "6965054", - "bbr1hasread": "1", - "bbr1issuesprivate": "0", - "bbr1haswrite": "1", - "bbr1size": "4282777", - "X-Usage-Throttled": "True", - "Access-Control-Allow-Origin": "*", - "X-View-Name": "bitbucket.apps.lfs.clientapi.batch.ObjectsBatchHandler", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.388290882111", - "Connection": "Keep-Alive", - "bbusername": "owner", - "X-Token-Id": "47401645", - "X-Usage-Input-Ops": "0", - "X-Request-Count": "1106", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "bbr1owner": "owner", - "Content-Length": "889", - "bbr1id": "64027664" - }, - "response": "{\"objects\": [{\"oid\": \"b1d40c19b912d2130d1bed8ff1a62a55c7d932978502e1d8559eb77951c5e8d3\", \"actions\": {\"verify\": {\"href\": \"https://bitbucket.org/%7B%7D/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D/info/lfs/object/verify?upload_id=482103e5-99fe-4c4c-8e83-fd25c8baea2d\"}, \"upload\": {\"header\": {\"X-Client-ID\": \"46305acb-bece-48e9-9d62-d41541b0fc95\", \"Authorization\": \"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0NjMwNWFjYi1iZWNlLTQ4ZTktOWQ2Mi1kNDE1NDFiMGZjOTUiLCJhY2Nlc3MiOnsidXJuOmZpbGVzdG9yZTpjaHVuazoqIjpbInJlYWQiLCJjcmVhdGUiXSwidXJuOmZpbGVzdG9yZTp1cGxvYWQ6NDgyMTAzZTUtOTlmZS00YzRjLThlODMtZmQyNWM4YmFlYTJkIjpbInVwZGF0ZSIsImNyZWF0ZSJdfSwibmJmIjoxNTg2Njg1MDExLCJleHAiOjE1ODY2ODg2MTF9.3aTOE1pJqfa_T6MXetV6adhzeu9s5nNZ_6rtOweWl-Q\"}, \"href\": \"https://api.media.atlassian.com/upload/482103e5-99fe-4c4c-8e83-fd25c8baea2d/binary?hashAlgorithm=sha256\", \"expires_in\": 3480}}, \"size\": 3470}]}", - "status": 200 - }, - { - "body": { - "encoding": "base64", - "content": "iVBORw0KGgoAAAANSUhEUgAAAJcAAACXCAMAAAAvQTlLAAAAwFBMVEX///85rbswtrpAp71DpL03sLs8q7xGob4tubkzs7o+qLwqvLknv7gkwrgpvbhIn75Mm7/x+vrs9fhktcfn9/bg8PMtp7lSr8IWw7U7yL3Y7vAAq7JSzMM+w75MwMGj2dxmv8iLx9O73ORcrMRorMeJ2tJr1MlTx8N8z8+45uWs4OBQu8HH5ulTuMMXqbaW0Ndxvsuq1t4jnrd6ss2TwNUwj7ii4tzP8Ox00syR19ZkxseByNCezdnP5Ox2tsyDv9FhQXEFAAAMiUlEQVR4nO2ci1biyBaGDTcBUaxAEjuoQLQHEQhJ2j7TCLTv/1anau8kdU3wwsW1zvlnVg9UKlVf/r1rVyFjn539X6cSOTWASf2f/9z+87N/agxF5OcN6uf3Mu32JtPtqVEE9X/ccP34NrEktzeibr9JKCW3vo9j1K1L+g/X5bdwrP/jkkqgYjq9Y/3bSxSz7PImfXN5e2Kw/qWoG+H1ScFyt3T9PCXWj0KsU/pV4tblf06HRX5cdoqw/kClOIlnZNKhKovi/O4EYKQDMlsGUezfdTpHL7D9SSeXhoX1/olemhzZMXLXESVRdS7/ZV3+hSt3R3VMdEsTli5yi++OmWOKW4omYNEqfXd1PMdK3ep0IIq+wHkkx8gVVeeqCOsJ+qToV6CjONaf4GQFYHdiFNOex3CM3F1dlIFNgV3Curg4fI71JxdUV1dFaH+g16tAdcVuOLRj5O4CpZPBqyuY/zlnSrEO7Ri6JYMBW4aHUdSoDu3Y08WVESzDm0CvPzkU731gx/zVnTCVxgaeTDWvmJrN1QG5aIY9TwrJnqHDHTNKhrpoUq75Qbmopk8XYoRyrFe4+qQ6hW41m4eJI3ld8cx1VtrMVxcdn12am6GoDoJl39ORX+f5M5PpHxUM8ofcFWHdA7WzXyxynw7+zMn8V2n69BhhhqKCffNpv9Hs3/PxVzx/+8MJi9pk9Tx9XmEUC7GasCgmzfs91jEiYLFwTvmV6eSCW0g7FlGly5FZvjfH+rNKpSLN0RzyPBGnWWVJ35SZmJifdpOONNuTY+S+UtHA7p98wwMwIBMTu4E9yZxxVfbjWB+xNLLm/VR78FcTURp8BvOMA+0jx0iOZSBbKU8+L+aC5bhKx/m6Y30RS+VqqsWSFHNBdXvKBvqqY5JbpjRT+j8VcrE1TF7zYb7mWL/V0rgoGYd71e5Y3etM7D6W9n0+TKvyBcfIfUsHkz0zPMuzTFYBrAHzxx9kVFSfd6w/a6FK0AzV4uzsXx7O/AbWHgw4FgX7pGMkwzKCpWRP5nudIUY77w0Bz5YjDjqofMqx/n1LkIkM2KbCLVPhwEHfNIWeS9b0yqFardnwc1iz1m4uKmFF+pTzdSgeOAZ5N8DnVIPZ/JPpZbcUVcxs+enCTot5RdihyHAmdLNTrMFs/YVj2FwFM3Jhfk3n09VMaBQPHGgaY/UHmFbCpu8sP27bcvAOMjwM6u3C3P5qNkTGUWvQGvHjG5mPBuFHThc23EtmGpfGBoc93xhgIZz51EMpxqNBnWr2bsf69boN8xm5RDKM4szIVRnM9ANHLn9No1FHvdMxsqiHa3i1DAvIMjYYcWjGYpqtzAk+X8MgKdfoXY7ZrGsIATobFXIBG6SNOYogluUj7eOsM2wNOBSbDMOz0y0QPINfL+OCo97ZazEUaCC74a+BSsCiWux0zF6Eqbnwdhi2CtEGEKNhixFkxQ1etipSN+W5hzOVijq22OFYjlWvx9AwqhdxDWBr0cqv0mmw0uJIy0NYV1UOZi8s3hWWtAMvTVPi+i7PwNnQPJ2zXihcVhmYPbKsek42grY4NIMN8HOsXnt5j9m8eC47ngmm0VmtUWFnYoHyoEOgWCRNZHDRMZdekGkPJGthu/ZH9RQN57UKkp8G0ZLJhEgCmgCHUVwX2DVoCfvQfJ1tgs4oDEfC8cZfWiHHKnCM5FgZmIXLdxpysIysPIojcd+e0U6sN5kv02HWwiE3GFlhNmvDVC7sRaPRsGS0NJJraflgkGBOUxTpChQ2xiWjas2YEc/5KNQ04TQ5X4cpWaOhJ7/dsGQuBINF3lcWT6u1gA1obcCaiefCpxarVC1cQUt5kCHfFe3lArEogwJmL9xGwwCGzs6VeoO4vrZ70k2HR2I+atXT+gm2r6UhaGKteWWzgwjnd5VQNrCZEUtk6QYuRxKfn56mlL1AWIH9ofgYQ+heV2TVFwGncCJgcBsiVpRhaZ6FATDIkYT5l5yV8oUzaQXWxQcBe526LFayrHCx5HfZsee6DTfiWGMRSw2mrUYyjDGKQktdPIXGai0P2RC+pbRm5SHaCrGnprnj3EIZSyHTIrmABh6W0FryFegvF9rmF7ILgdQsTuD2Yk62HbtJZuFY4xLB0B4hPQAizqdZxGKuq0z5g/CwW5Ig2xtjMZxxnl06mEjmiHFDTDt7JywqEhjOCfVs7YxMWFCcgMyN9A+U9nzjefSSSpfdjefc9IExiumiF7N2aWLiT2LpVlniZK7rxYZ9iGyDTdTW2DCSG4xkyJRFkRZtYRxlBcpcYGmoUVkNRTSc5u+QbCceq8bBCLiBL4P5BpONrUCfF3a6AgupaEFgdzthOVNmWi8wkkFU43FPYGOjKFV4bQkB9JclUBB5ZmvwHqw2lettisioAzTlIoaPA1i8poBx8goso4IDH+u33AkFVFSJMFccm75Q8mnKsajSgczu2rFerJBGTHJYjuOdVBmXUO/PSLvq9caBoy1VwlLOasRqO9g25gdJ+Q9Z7GYSlULlZrXbnvzkvSqLrRstA18/nBmOa2QehTqCSS78iGlRwiRi9dSDjoftLiWOqHPGuHGqeLEbKONiY/mNYq62IE8/GPaEy7TIRbHJuSyE76aiXOyGuWFH0bmqqlvoWFUggypG4QrYxg33PUywz7D+cQGX6BXNceMHD8kxhtZglcL11qbexI+XERYSM1EmPE9FZi55QpNbMFdbAWOuNZaFuUZsP1jT3YN2Kk5qF9ayEUrBahemDa5KMc+iwm2B09H9gTlXxAUj6FcVpqoxt3IwryqSjY3fZhid28ZQgtX5aQt8T6u2tzUsc24JjmVgvQ3vqdwT9JZzw4Kwg+XYk9jc9MkCtwyKUpW6BWNTxyha0gt4xyBS7tqwyRfRxvDdgO0EsOsjSHZs8d1iKEa1wy0YuFdNvA0PoBPTWhspAPhpk80exVt99zpzAlisfJS0fulQiLXLLQQTznvOG+wDap5t8+dnbL1oY0hE298K79hnCCMS6B1Y4siBl8D9eKQPfMfxA7ROSRhGNw62JbuX4xZT9T70nQfZZGsA7xu7bc9rZx/vetrKZykVjeMiNtc1Q70ntwSo7VuS3pZGcZ6kI2JByvZ5Vh4V57xx4OtTke3mrdd2E5XqQ1hnOVW1iudHwjcpF+yL9cDkHdw2TbnAuFg3vXaSCFTJh7DSciFEf5zwefFEGRVyZXQFIaWV5M2rpnQfyy0Klj8QhM1no7SzkgtNjrcDrF3yAYLurGNqXPLBlXjGAodcGEVuH2NLYLTtLi6hvGwDx0Cw3XziS1vbqzEMCEYsJir1DSMpxtYoLwPbVpOq97bZdQx+n8hDrVrDkCVVWQl+Ase1UC2g4v3G6f00cN5ma3LuQ7K9pAcvelVV+LOgbYL2wb9t/K8sMDaQFmBS7VHnvsRGcN/a1DSudB1tVCNVQXa+yW00CrUkqY3LZt4Fxv6w6TgaWRbJcqwkVrlqmT6+ElVFfCxxSvxZyg6urQBfE/Xw5f8DLBBGqwpoGMm4NJJQUByViWF92a2zB3XMWhXwkje4HJVysR5bbYA9uEXTSwcD52oQJFpD9FWB5LQX/LAhSA7g1hnUMbNwy02n1UJFhYtjo3Ltwy0ms2N0WozkWwE27QBVuXcQt5iKHMN5iVfIBZFWnNyXW0xFjj2IkTQIdgX56v7cYipy7C9cHRdgAYMjce3TLSb74dw0cxrJAi6gFt08369bMLcZDEPlm7lwOYpYB/hdCuoYU03Bw0huaibh7kh52G1U+3eLiSAYTlEDvvOsRhl2hXQ5ZncxrAP9BpHNp8hFIfEohoFK4wW2np/b0k2HcYuJ1HSwzIZNjZNmrwA4f3vA37cyOXZ+/gLX/urAItfh3CoEq+EGrrXDNhUfA6vIMSIQcMGKeDsKlrS+dkUSbESsI/yGrdEx/FmK3NZ1Mq7Du8VEDFw13MCltkc7Yz3Sb3Dbj10NDI9iL+KFvwwn6CLfUUS6GlgXI/mgor50j5FbmahjlAzokLDb7eLPUnhbF5fj8dwCsK6mdAPnDbAc/x4VCx1ThBs4b2fLkRz9L8YwOIYbePbu+thEGZjm2CO055E8EZfBMYzkLzHfTgKmOZZu4BDGkp+uHhwszSQeSfwyhDVcb3fdfUiwx2sBjf6BG/jLdff6uHVLA6Mw8M81haJ/oEs2fXFSLFqgHq8FdVOe7ePJ/8Y0u3stCSN5YrcAQXLs+vfub+qPJNWxb+AVSnHs5dQ8uezv6RfVr99Zev06NYqsFwT7/X2CmMp5+fXr18ue/3qJ/ejktfR/WP8FOoK2QLx2JrUAAAAASUVORK5CYII=", - "contentType": "image/png" - }, - "method": "PUT", - "url": "/upload/482103e5-99fe-4c4c-8e83-fd25c8baea2d/binary?hashAlgorithm=sha256", - "headers": { - "Content-Length": "0", - "Server": "globaledge-envoy", - "X-B3-Traceid": "864b3de1229d5c13", - "X-B3-Spanid": "6e5b3096805fe5f8", - "X-B3-Parentspanid": "89df9549eb154a81", - "X-B3-Sampled": "1", - "X-Dns-Prefetch-Control": "off", - "X-Frame-Options": "SAMEORIGIN", - "X-Download-Options": "noopen", - "Access-Control-Allow-Origin": "*", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Range, X-Media-Region", - "X-Media-Region": "us-west-1", - "Content-Security-Policy": "script-src 'none'", - "Atl-Traceid": "864b3de1229d5c13", - "X-Envoy-Upstream-Service-Time": "184", - "Expect-Ct": "report-uri=\"https://web-security-reports.services.atlassian.com/expect-ct-report/dt-api-filestore\", max-age=86400", - "X-Logging-Id": "V1xZRhzmw", - "Strict-Transport-Security": "max-age=63072000; preload", - "X-Content-Type-Options": "nosniff", - "X-Xss-Protection": "1; mode=block" - }, - "response": null, - "status": 200 - }, - { - "body": "{\"oid\":\"b1d40c19b912d2130d1bed8ff1a62a55c7d932978502e1d8559eb77951c5e8d3\",\"size\":3470}", - "method": "POST", - "url": "/%7B%7D/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D/info/lfs/object/verify?upload_id=482103e5-99fe-4c4c-8e83-fd25c8baea2d", - "headers": { - "bbr1private": "0", - "bbr1wikiprivate": "0", - "Server": "nginx", - "Vary": "Authorization", - "bbr1repouuid": "97c5226e-9ffb-42c4-948d-3d785a9d0c46", - "Cache-Control": "no-cache", - "Content-Type": "application/vnd.git-lfs+json", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "X-Usage-Output-Ops": "0", - "bbr1reposlug": "repo", - "bbr1hasadmin": "1", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "bbr1scm": "git", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Usage-User-Time": "0.057842", - "X-Usage-System-Time": "0.002809", - "bbuserid": "6965054", - "bbauthhash": "", - "X-Served-By": "app-135", - "X-Consumer-Client-Id": "ATfdeqkMFdgQA3S8Tr", - "bbr1ownerid": "6965054", - "bbr1hasread": "1", - "bbr1issuesprivate": "0", - "bbr1haswrite": "1", - "bbr1size": "4282777", - "X-Usage-Throttled": "True", - "Access-Control-Allow-Origin": "*", - "X-View-Name": "bitbucket.apps.lfs.clientapi.verify.ObjectVerifyHandler", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.444218873978", - "Connection": "Keep-Alive", - "bbusername": "owner", - "X-Token-Id": "47401645", - "X-Usage-Input-Ops": "0", - "X-Request-Count": "1229", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "bbr1owner": "owner", - "Content-Length": "4", - "bbr1id": "64027664" - }, - "response": "null", - "status": 200 - }, - { - "body": "------WebKitFormBoundaryUaWMbqQGWSRMEsIB\r\nContent-Disposition: form-data; name=\"static/media/netlify.png\"; filename=\"netlify.png\"\r\nContent-Type: text/plain\r\n\r\nversion https://git-lfs.github.com/spec/v1\noid sha256:b1d40c19b912d2130d1bed8ff1a62a55c7d932978502e1d8559eb77951c5e8d3\nsize 3470\n\r\n------WebKitFormBoundaryUaWMbqQGWSRMEsIB\r\nContent-Disposition: form-data; name=\"message\"\r\n\r\nUpload âstatic/media/netlify.pngâ\r\n------WebKitFormBoundaryUaWMbqQGWSRMEsIB\r\nContent-Disposition: form-data; name=\"branch\"\r\n\r\nmaster\r\n------WebKitFormBoundaryUaWMbqQGWSRMEsIB--\r\n", - "method": "POST", - "url": "/2.0/repositories/owner/repo/src", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "text/html; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f1587292ef4180b8bad6cd44274c19c66e373272", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.509354114532", - "Connection": "Keep-Alive", - "X-Request-Count": "1754", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "0" - }, - "response": null, - "status": 201 - }, - { - "body": "{\"ref\":{\"name\":\"refs/heads/master\"}}", - "method": "POST", - "url": "/owner/repo.git/info/lfs/locks/verify", - "headers": { - "Server": "nginx", - "Cache-Control": "no-cache", - "Content-Type": "text/html", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "X-Usage-Output-Ops": "0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Usage-User-Time": "0.014185", - "X-Usage-System-Time": "0.001777", - "bbuserid": "6965054", - "bbauthhash": "85825d9e95e23cd03a5fd66443596e6bee282889", - "X-Served-By": "app-135", - "X-Consumer-Client-Id": "ATfdeqkMFdgQA3S8Tr", - "X-Usage-Throttled": "True", - "X-Static-Version": "e1ce49ad4aa3", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0277900695801", - "Connection": "Keep-Alive", - "X-Token-Id": "47401645", - "bbusername": "owner", - "X-Usage-Input-Ops": "0", - "X-Version": "e1ce49ad4aa3", - "X-Request-Count": "2456", - "X-Frame-Options": "SAMEORIGIN", - "content-length": "77" - }, - "response": "Not Found
The requested resource was not found on this server.
", - "status": 404 - } -] diff --git a/source/admin/cypress/fixtures/BitBucket Backend Media Library - Large Media__should not show draft entry image in global media library.json b/source/admin/cypress/fixtures/BitBucket Backend Media Library - Large Media__should not show draft entry image in global media library.json deleted file mode 100644 index b4c36fa..0000000 --- a/source/admin/cypress/fixtures/BitBucket Backend Media Library - Large Media__should not show draft entry image in global media library.json +++ /dev/null @@ -1,1094 +0,0 @@ -[ - { - "method": "GET", - "url": "/2.0/repositories/owner/repo", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0415859222412", - "Connection": "Keep-Alive", - "X-Request-Count": "3185", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2995" - }, - "response": "{\"scm\": \"git\", \"website\": null, \"has_wiki\": false, \"name\": \"repo\", \"links\": {\"watchers\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/watchers\"}, \"branches\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches\"}, \"tags\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/tags\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits\"}, \"clone\": [{\"href\": \"https://owner@bitbucket.org/owner/repo.git\", \"name\": \"https\"}, {\"href\": \"git@bitbucket.org:owner/repo.git\", \"name\": \"ssh\"}], \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"source\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/src\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}, \"hooks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/hooks\"}, \"forks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/forks\"}, \"downloads\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/downloads\"}, \"pullrequests\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests\"}}, \"fork_policy\": \"allow_forks\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\", \"language\": \"\", \"created_on\": \"2020-04-12T09:50:32.743342+00:00\", \"mainbranch\": {\"type\": \"branch\", \"name\": \"master\"}, \"full_name\": \"owner/repo\", \"has_issues\": false, \"owner\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:53:48.222990+00:00\", \"size\": 8593704, \"type\": \"repository\", \"slug\": \"repo\", \"is_private\": false, \"description\": \"\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/user", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0446879863739", - "X-Accepted-OAuth-Scopes": "account", - "Connection": "Keep-Alive", - "X-Request-Count": "919", - "X-Version": "e1ce49ad4aa3", - "X-Frame-Options": "SAMEORIGIN", - "content-length": "1041" - }, - "response": "{\"name\":\"owner\",\"display_name\":\"owner\",\"links\":{\"avatar\":{\"href\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\"}},\"nickname\":\"owner\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0433049201965", - "Connection": "Keep-Alive", - "X-Request-Count": "1729", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3039" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:50:53+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/static/media?max_depth=1&pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0441160202026", - "Connection": "Keep-Alive", - "X-Request-Count": "602", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "78" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: static/media\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0554401874542", - "Connection": "Keep-Alive", - "X-Request-Count": "4346", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3039" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/statuses\"}}, \"author\": {\"raw\": \"ownerkah \", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:50:53+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0442631244659", - "Connection": "Keep-Alive", - "X-Request-Count": "2610", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3039" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/statuses\"}}, \"author\": {\"raw\": \"ownerkah \", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:50:53+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts?max_depth=1&pagelen=20", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0496108531952", - "Connection": "Keep-Alive", - "X-Request-Count": "4447", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "6371" - }, - "response": "{\"pagelen\":20,\"values\":[{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"}},\"path\":\"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"53eb7709cda173b8c923b4bef2a51a1ce49d14af\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":1707},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"}},\"path\":\"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"53eb7709cda173b8c923b4bef2a51a1ce49d14af\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2565},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-02-02---A-Brief-History-of-Typography.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"}},\"path\":\"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"53eb7709cda173b8c923b4bef2a51a1ce49d14af\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2786},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"}},\"path\":\"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"53eb7709cda173b8c923b4bef2a51a1ce49d14af\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":16071},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"}},\"path\":\"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"53eb7709cda173b8c923b4bef2a51a1ce49d14af\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":7465}],\"page\":1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-02-02---A-Brief-History-of-Typography.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0357069969177", - "Connection": "Keep-Alive", - "X-Request-Count": "4264", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2786" - }, - "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n \n\t \n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0407018661499", - "Connection": "Keep-Alive", - "X-Request-Count": "4235", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1707" - }, - "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0600669384003", - "Connection": "Keep-Alive", - "X-Request-Count": "2658", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2565" - }, - "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n\n\t\t\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.
\n\t\t\n\t\n\t \n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-02-02---A-Brief-History-of-Typography.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.101619958878", - "Connection": "Keep-Alive", - "X-Request-Count": "4579", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.095664024353", - "Connection": "Keep-Alive", - "X-Request-Count": "304", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.113714933395", - "Connection": "Keep-Alive", - "X-Request-Count": "3867", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-18-08---The-Birth-of-Movable-Type.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0417268276215", - "Connection": "Keep-Alive", - "X-Request-Count": "3040", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "16071" - }, - "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western worldâs first major printed books, the âFortyâTwoâLineâ Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western worldâs first major printed books, the âFortyâTwoâLineâ Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 â 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n\n\t \n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information â including revolutionary ideas â transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a âsecretâ. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439â1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him âlike a ray of lightâ.\n\n\n\t
Johannes Gutenberg \n\n\t \n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fustâs son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n\n\t
Early wooden printing press as depicted in 1568. \n\n\t \n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454â55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the FustâSchöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the GutenbergâFust shop might have employed as many as 25 craftsmen.\n\n\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of âmovable typeâ.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n\n\t\t\nAll that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to followâyour grace would be able to read it without effort, and indeed without glasses.
\n\t\t\n\t\n\t \n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in âcuneiformâ style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that âthe decisive factor for the birth of typographyâ, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0514719486237", - "Connection": "Keep-Alive", - "X-Request-Count": "2979", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "7465" - }, - "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didnât mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other â the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n\n\n*The 42âLine Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But itâs the third transition that stripped it naked. Typefaces are faceless these days. Theyâre just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the âright oneâ is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\nâ Massimo Vignelli\n\nTypography is not about typefaces. Itâs not about what looks best, itâs about what feels right. What communicates the message best. Typography, in its essence, is about the message. âTypographical design should perform optically what the speaker creates through voice and gesture of his thoughts.â, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because itâs a safe option. Itâs always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still donât spot it in the street.\n\n\n\t\t\nIt is a press, certainly, but a press from which shall flow in inexhaustible streams⦠Through it, god will spread his word.
\n\t\t\n\t\n\t \n\nTypefaces donât look handmade these days. And thatâs all right. They donât have to. Industrialism took that away from them and weâre fine with it. Weâve traded that part of humanity for a process that produces more books that are easier to read. That canât be bad. And it isnât.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> â Eric Gill\n\nWeâve come close to âperfectionâ in the last five centuries. The letters are crisp and without rough edges. We print our compositions with highâprecision printers on a high quality, machine made paper.\n\n\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we donât care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. Thereâs no meaning in our work. Type sizes, leading, margins⦠Itâs all just a few clicks or lines of code. The message isnât important anymore. Thereâs no more âwhyâ behind the âwhatâ.\n\n## Chasing perfection\n\nHuman beings arenât perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2017-18-08---The-Birth-of-Movable-Type.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.1105260849", - "Connection": "Keep-Alive", - "X-Request-Count": "3921", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nKnowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.103651046753", - "Connection": "Keep-Alive", - "X-Request-Count": "3801", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0936169624329", - "Connection": "Keep-Alive", - "X-Request-Count": "2507", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name ~ \"cms/\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.071769952774", - "Connection": "Keep-Alive", - "X-Request-Count": "4057", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0479099750519", - "Connection": "Keep-Alive", - "X-Request-Count": "4504", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3039" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:50:53+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0395438671112", - "Connection": "Keep-Alive", - "X-Request-Count": "3031", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "105" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: content/posts/1970-01-01-first-title.md\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0441629886627", - "Connection": "Keep-Alive", - "X-Request-Count": "2989", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3039" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/statuses\"}}, \"author\": {\"raw\": \"ownerkah \", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:50:53+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/.gitattributes", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0499730110168", - "Connection": "Keep-Alive", - "X-Request-Count": "4646", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "220" - }, - "response": "/.github export-ignore\n/.gitattributes export-ignore\n/.editorconfig export-ignore\n/.travis.yml export-ignore\n**/*.js.snap export-ignore\n*.png filter=lfs diff=lfs merge=lfs -text\n*.jpg filter=lfs diff=lfs merge=lfs -text\n", - "status": 200 - }, - { - "body": "{\"operation\":\"upload\",\"transfers\":[\"basic\"],\"objects\":[{\"size\":3470,\"oid\":\"b1d40c19b912d2130d1bed8ff1a62a55c7d932978502e1d8559eb77951c5e8d3\"}]}", - "method": "POST", - "url": "/owner/repo/info/lfs/objects/batch", - "headers": { - "bbr1private": "0", - "bbr1wikiprivate": "0", - "Server": "nginx", - "Vary": "Authorization", - "bbr1repouuid": "97c5226e-9ffb-42c4-948d-3d785a9d0c46", - "Cache-Control": "no-cache", - "Content-Type": "application/vnd.git-lfs+json", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "X-Usage-Output-Ops": "0", - "bbr1reposlug": "repo", - "bbr1hasadmin": "1", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "bbr1scm": "git", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Usage-User-Time": "0.040393", - "X-Usage-System-Time": "0.010121", - "bbuserid": "6965054", - "bbauthhash": "", - "X-Served-By": "app-135", - "X-Consumer-Client-Id": "ATfdeqkMFdgQA3S8Tr", - "bbr1ownerid": "6965054", - "bbr1hasread": "1", - "bbr1issuesprivate": "0", - "bbr1haswrite": "1", - "bbr1size": "8593704", - "X-Usage-Throttled": "True", - "Access-Control-Allow-Origin": "*", - "X-View-Name": "bitbucket.apps.lfs.clientapi.batch.ObjectsBatchHandler", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0742340087891", - "Connection": "Keep-Alive", - "bbusername": "owner", - "X-Token-Id": "47401645", - "X-Usage-Input-Ops": "0", - "X-Request-Count": "616", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "bbr1owner": "owner", - "Content-Length": "104", - "bbr1id": "64027664" - }, - "response": "{\"objects\": [{\"oid\": \"b1d40c19b912d2130d1bed8ff1a62a55c7d932978502e1d8559eb77951c5e8d3\", \"size\": 3470}]}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0391068458557", - "Connection": "Keep-Alive", - "X-Request-Count": "3869", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3039" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/statuses\"}}, \"author\": {\"raw\": \"ownerkah \", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:50:53+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "body": "------WebKitFormBoundarybyAm9N1re7QdgCAN\r\nContent-Disposition: form-data; name=\"content/posts/1970-01-01-first-title.md\"; filename=\"1970-01-01-first-title.md\"\r\nContent-Type: application/octet-stream\r\n\r\n---\ntemplate: post\ntitle: first title\nimage: /media/netlify.png\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\r\n------WebKitFormBoundarybyAm9N1re7QdgCAN\r\nContent-Disposition: form-data; name=\"static/media/netlify.png\"; filename=\"netlify.png\"\r\nContent-Type: text/plain\r\n\r\nversion https://git-lfs.github.com/spec/v1\noid sha256:b1d40c19b912d2130d1bed8ff1a62a55c7d932978502e1d8559eb77951c5e8d3\nsize 3470\n\r\n------WebKitFormBoundarybyAm9N1re7QdgCAN\r\nContent-Disposition: form-data; name=\"message\"\r\n\r\nCreate Post â1970-01-01-first-titleâ\r\n------WebKitFormBoundarybyAm9N1re7QdgCAN\r\nContent-Disposition: form-data; name=\"branch\"\r\n\r\ncms/posts/1970-01-01-first-title\r\n------WebKitFormBoundarybyAm9N1re7QdgCAN\r\nContent-Disposition: form-data; name=\"parents\"\r\n\r\n53eb7709cda173b8c923b4bef2a51a1ce49d14af\r\n------WebKitFormBoundarybyAm9N1re7QdgCAN--\r\n", - "method": "POST", - "url": "/2.0/repositories/owner/repo/src", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "text/html; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f8c794c50a4c7216af211291d2c103cba4479fee", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.41322684288", - "Connection": "Keep-Alive", - "X-Request-Count": "481", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "0" - }, - "response": null, - "status": 201 - }, - { - "body": "{\"title\":\"Create Post “1970-01-01-first-title”\",\"source\":{\"branch\":{\"name\":\"cms/posts/1970-01-01-first-title\"}},\"destination\":{\"branch\":{\"name\":\"master\"}},\"description\":\"Automatically generated by Decap CMS\",\"close_source_branch\":true}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.248041152954", - "Connection": "Keep-Alive", - "X-Request-Count": "4499", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "5236" - }, - "response": "{\"rendered\": {\"description\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \" Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"title\": {\"raw\": \"Create Post “1970-01-01-first-title”\", \"markup\": \"markdown\", \"html\": \"Create Post “1970-01-01-first-title”
\", \"type\": \"rendered\"}}, \"type\": \"pullrequest\", \"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:f8c794c50a4c%0D53eb7709cda1?from_pullrequest_id=3\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:f8c794c50a4c%0D53eb7709cda1?from_pullrequest_id=3\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"reviewers\": [], \"id\": 3, \"destination\": {\"commit\": {\"hash\": \"53eb7709cda1\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda1\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:54:08.380799+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"f8c794c50a4c\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f8c794c50a4c\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/f8c794c50a4c\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 0, \"state\": \"OPEN\", \"task_count\": 0, \"participants\": [], \"reason\": \"\", \"updated_on\": \"2020-04-12T09:54:08.404847+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}", - "status": 201 - }, - { - "body": "{\"content\":{\"raw\":\"decap-cms/draft\"}}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/3/comments", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/comments/144752707", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.11581993103", - "Connection": "Keep-Alive", - "X-Request-Count": "2859", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1547" - }, - "response": "{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/comments/144752707\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3/_/diff#comment-144752707\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 3, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:54:09.180121+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:54:09.184099+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752707}", - "status": 201 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0791480541229", - "Connection": "Keep-Alive", - "X-Request-Count": "471", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4908" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:f8c794c50a4c%0D53eb7709cda1?from_pullrequest_id=3\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:f8c794c50a4c%0D53eb7709cda1?from_pullrequest_id=3\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 3, \"destination\": {\"commit\": {\"hash\": \"53eb7709cda1\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda1\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:54:08.380799+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"f8c794c50a4c\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f8c794c50a4c\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/f8c794c50a4c\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:54:09.184099+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/3/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0938379764557", - "Connection": "Keep-Alive", - "X-Request-Count": "4097", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1599" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/comments/144752707\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3/_/diff#comment-144752707\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 3, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:54:09.180121+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:54:09.184099+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752707}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/diff/cms/posts/1970-01-01-first-title..master?binary=false", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "must-revalidate, max-age=0", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.160892963409", - "Connection": "Keep-Alive", - "X-Request-Count": "1845", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "738" - }, - "response": "diff --git a/content/posts/1970-01-01-first-title.md b/content/posts/1970-01-01-first-title.md\nnew file mode 100644\nindex 0000000..5712f24\n--- /dev/null\n+++ b/content/posts/1970-01-01-first-title.md\n@@ -0,0 +1,11 @@\n+---\n+template: post\n+title: first title\n+image: /media/netlify.png\n+date: 1970-01-01T00:00:00.000Z\n+description: first description\n+category: first category\n+tags:\n+ - tag1\n+---\n+first body\n\\ No newline at end of file\ndiff --git a/static/media/netlify.png b/static/media/netlify.png\nnew file mode 100644\nindex 0000000..a137fb3\n--- /dev/null\n+++ b/static/media/netlify.png\n@@ -0,0 +1,3 @@\n+version https://git-lfs.github.com/spec/v1\n+oid sha256:b1d40c19b912d2130d1bed8ff1a62a55c7d932978502e1d8559eb77951c5e8d3\n+size 3470\n", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/3/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0945680141449", - "Connection": "Keep-Alive", - "X-Request-Count": "1735", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1599" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/comments/144752707\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3/_/diff#comment-144752707\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 3, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:54:09.180121+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:54:09.184099+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752707}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0589029788971", - "Connection": "Keep-Alive", - "X-Request-Count": "2970", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3710" - }, - "response": "{\"name\": \"cms/posts/1970-01-01-first-title\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/cms/posts/1970-01-01-first-title\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/cms/posts/1970-01-01-first-title\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"f8c794c50a4c7216af211291d2c103cba4479fee\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f8c794c50a4c7216af211291d2c103cba4479fee\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f8c794c50a4c7216af211291d2c103cba4479fee/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/f8c794c50a4c7216af211291d2c103cba4479fee\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/f8c794c50a4c7216af211291d2c103cba4479fee\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/f8c794c50a4c7216af211291d2c103cba4479fee\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f8c794c50a4c7216af211291d2c103cba4479fee/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f8c794c50a4c7216af211291d2c103cba4479fee/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}}], \"date\": \"2020-04-12T09:54:07+00:00\", \"message\": \"Create Post “1970-01-01-first-title”\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/f8c794c50a4c7216af211291d2c103cba4479fee/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0533380508423", - "Connection": "Keep-Alive", - "X-Request-Count": "1758", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "180" - }, - "response": "---\ntemplate: post\ntitle: first title\nimage: /media/netlify.png\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0703561306", - "Connection": "Keep-Alive", - "X-Request-Count": "2744", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3710" - }, - "response": "{\"name\": \"cms/posts/1970-01-01-first-title\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/cms/posts/1970-01-01-first-title\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/cms/posts/1970-01-01-first-title\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"f8c794c50a4c7216af211291d2c103cba4479fee\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f8c794c50a4c7216af211291d2c103cba4479fee\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f8c794c50a4c7216af211291d2c103cba4479fee/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/f8c794c50a4c7216af211291d2c103cba4479fee\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/f8c794c50a4c7216af211291d2c103cba4479fee\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/f8c794c50a4c7216af211291d2c103cba4479fee\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f8c794c50a4c7216af211291d2c103cba4479fee/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f8c794c50a4c7216af211291d2c103cba4479fee/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}}], \"date\": \"2020-04-12T09:54:07+00:00\", \"message\": \"Create Post “1970-01-01-first-title”\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/f8c794c50a4c7216af211291d2c103cba4479fee/static/media/netlify.png", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "text/html; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.media.atlassian.com/file/b851259d-0ea4-4c32-808d-5d73b564ac66/binarytoken=fakeTokenclient=fakeClient&dl=1&name=netlify.png", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.085342168808", - "Connection": "Keep-Alive", - "X-Request-Count": "3485", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "0" - }, - "response": null, - "status": 302 - }, - { - "method": "GET", - "url": "/file/b851259d-0ea4-4c32-808d-5d73b564ac66/binarytoken=fakeTokenclient=fakeClient&dl=1&name=netlify.png", - "headers": { - "Content-Type": "image/png", - "Content-Length": "3470", - "Server": "globaledge-envoy", - "X-B3-Traceid": "d2ad83edeb62742b", - "X-B3-Spanid": "8e62c6c6e1734976", - "X-B3-Parentspanid": "541247758ac59671", - "X-B3-Sampled": "1", - "X-Dns-Prefetch-Control": "off", - "X-Frame-Options": "SAMEORIGIN", - "X-Download-Options": "noopen", - "Access-Control-Allow-Origin": "*", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Range, X-Media-Region", - "X-Media-Region": "us-west-1", - "Content-Security-Policy": "script-src 'none'", - "Timing-Allow-Origin": "*", - "Accept-Ranges": "bytes", - "Content-Disposition": "attachment; filename=\"netlify.png\"", - "Cache-Control": "private", - "Atl-Traceid": "d2ad83edeb62742b", - "X-Envoy-Upstream-Service-Time": "292", - "Expect-Ct": "report-uri=\"https://web-security-reports.services.atlassian.com/expect-ct-report/dt-api-filestore\", max-age=86400", - "X-Logging-Id": "V1xZRhzmw", - "Strict-Transport-Security": "max-age=63072000; preload", - "X-Content-Type-Options": "nosniff", - "X-Xss-Protection": "1; mode=block" - }, - "response": { - "encoding": "base64", - "content": "iVBORw0KGgoAAAANSUhEUgAAAJcAAACXCAMAAAAvQTlLAAAAwFBMVEX///85rbswtrpAp71DpL03sLs8q7xGob4tubkzs7o+qLwqvLknv7gkwrgpvbhIn75Mm7/x+vrs9fhktcfn9/bg8PMtp7lSr8IWw7U7yL3Y7vAAq7JSzMM+w75MwMGj2dxmv8iLx9O73ORcrMRorMeJ2tJr1MlTx8N8z8+45uWs4OBQu8HH5ulTuMMXqbaW0Ndxvsuq1t4jnrd6ss2TwNUwj7ii4tzP8Ox00syR19ZkxseByNCezdnP5Ox2tsyDv9FhQXEFAAAMiUlEQVR4nO2ci1biyBaGDTcBUaxAEjuoQLQHEQhJ2j7TCLTv/1anau8kdU3wwsW1zvlnVg9UKlVf/r1rVyFjn539X6cSOTWASf2f/9z+87N/agxF5OcN6uf3Mu32JtPtqVEE9X/ccP34NrEktzeibr9JKCW3vo9j1K1L+g/X5bdwrP/jkkqgYjq9Y/3bSxSz7PImfXN5e2Kw/qWoG+H1ScFyt3T9PCXWj0KsU/pV4tblf06HRX5cdoqw/kClOIlnZNKhKovi/O4EYKQDMlsGUezfdTpHL7D9SSeXhoX1/olemhzZMXLXESVRdS7/ZV3+hSt3R3VMdEsTli5yi++OmWOKW4omYNEqfXd1PMdK3ep0IIq+wHkkx8gVVeeqCOsJ+qToV6CjONaf4GQFYHdiFNOex3CM3F1dlIFNgV3Curg4fI71JxdUV1dFaH+g16tAdcVuOLRj5O4CpZPBqyuY/zlnSrEO7Ri6JYMBW4aHUdSoDu3Y08WVESzDm0CvPzkU731gx/zVnTCVxgaeTDWvmJrN1QG5aIY9TwrJnqHDHTNKhrpoUq75Qbmopk8XYoRyrFe4+qQ6hW41m4eJI3ld8cx1VtrMVxcdn12am6GoDoJl39ORX+f5M5PpHxUM8ofcFWHdA7WzXyxynw7+zMn8V2n69BhhhqKCffNpv9Hs3/PxVzx/+8MJi9pk9Tx9XmEUC7GasCgmzfs91jEiYLFwTvmV6eSCW0g7FlGly5FZvjfH+rNKpSLN0RzyPBGnWWVJ35SZmJifdpOONNuTY+S+UtHA7p98wwMwIBMTu4E9yZxxVfbjWB+xNLLm/VR78FcTURp8BvOMA+0jx0iOZSBbKU8+L+aC5bhKx/m6Y30RS+VqqsWSFHNBdXvKBvqqY5JbpjRT+j8VcrE1TF7zYb7mWL/V0rgoGYd71e5Y3etM7D6W9n0+TKvyBcfIfUsHkz0zPMuzTFYBrAHzxx9kVFSfd6w/a6FK0AzV4uzsXx7O/AbWHgw4FgX7pGMkwzKCpWRP5nudIUY77w0Bz5YjDjqofMqx/n1LkIkM2KbCLVPhwEHfNIWeS9b0yqFardnwc1iz1m4uKmFF+pTzdSgeOAZ5N8DnVIPZ/JPpZbcUVcxs+enCTot5RdihyHAmdLNTrMFs/YVj2FwFM3Jhfk3n09VMaBQPHGgaY/UHmFbCpu8sP27bcvAOMjwM6u3C3P5qNkTGUWvQGvHjG5mPBuFHThc23EtmGpfGBoc93xhgIZz51EMpxqNBnWr2bsf69boN8xm5RDKM4szIVRnM9ANHLn9No1FHvdMxsqiHa3i1DAvIMjYYcWjGYpqtzAk+X8MgKdfoXY7ZrGsIATobFXIBG6SNOYogluUj7eOsM2wNOBSbDMOz0y0QPINfL+OCo97ZazEUaCC74a+BSsCiWux0zF6Eqbnwdhi2CtEGEKNhixFkxQ1etipSN+W5hzOVijq22OFYjlWvx9AwqhdxDWBr0cqv0mmw0uJIy0NYV1UOZi8s3hWWtAMvTVPi+i7PwNnQPJ2zXihcVhmYPbKsek42grY4NIMN8HOsXnt5j9m8eC47ngmm0VmtUWFnYoHyoEOgWCRNZHDRMZdekGkPJGthu/ZH9RQN57UKkp8G0ZLJhEgCmgCHUVwX2DVoCfvQfJ1tgs4oDEfC8cZfWiHHKnCM5FgZmIXLdxpysIysPIojcd+e0U6sN5kv02HWwiE3GFlhNmvDVC7sRaPRsGS0NJJraflgkGBOUxTpChQ2xiWjas2YEc/5KNQ04TQ5X4cpWaOhJ7/dsGQuBINF3lcWT6u1gA1obcCaiefCpxarVC1cQUt5kCHfFe3lArEogwJmL9xGwwCGzs6VeoO4vrZ70k2HR2I+atXT+gm2r6UhaGKteWWzgwjnd5VQNrCZEUtk6QYuRxKfn56mlL1AWIH9ofgYQ+heV2TVFwGncCJgcBsiVpRhaZ6FATDIkYT5l5yV8oUzaQXWxQcBe526LFayrHCx5HfZsee6DTfiWGMRSw2mrUYyjDGKQktdPIXGai0P2RC+pbRm5SHaCrGnprnj3EIZSyHTIrmABh6W0FryFegvF9rmF7ILgdQsTuD2Yk62HbtJZuFY4xLB0B4hPQAizqdZxGKuq0z5g/CwW5Ig2xtjMZxxnl06mEjmiHFDTDt7JywqEhjOCfVs7YxMWFCcgMyN9A+U9nzjefSSSpfdjefc9IExiumiF7N2aWLiT2LpVlniZK7rxYZ9iGyDTdTW2DCSG4xkyJRFkRZtYRxlBcpcYGmoUVkNRTSc5u+QbCceq8bBCLiBL4P5BpONrUCfF3a6AgupaEFgdzthOVNmWi8wkkFU43FPYGOjKFV4bQkB9JclUBB5ZmvwHqw2lettisioAzTlIoaPA1i8poBx8goso4IDH+u33AkFVFSJMFccm75Q8mnKsajSgczu2rFerJBGTHJYjuOdVBmXUO/PSLvq9caBoy1VwlLOasRqO9g25gdJ+Q9Z7GYSlULlZrXbnvzkvSqLrRstA18/nBmOa2QehTqCSS78iGlRwiRi9dSDjoftLiWOqHPGuHGqeLEbKONiY/mNYq62IE8/GPaEy7TIRbHJuSyE76aiXOyGuWFH0bmqqlvoWFUggypG4QrYxg33PUywz7D+cQGX6BXNceMHD8kxhtZglcL11qbexI+XERYSM1EmPE9FZi55QpNbMFdbAWOuNZaFuUZsP1jT3YN2Kk5qF9ayEUrBahemDa5KMc+iwm2B09H9gTlXxAUj6FcVpqoxt3IwryqSjY3fZhid28ZQgtX5aQt8T6u2tzUsc24JjmVgvQ3vqdwT9JZzw4Kwg+XYk9jc9MkCtwyKUpW6BWNTxyha0gt4xyBS7tqwyRfRxvDdgO0EsOsjSHZs8d1iKEa1wy0YuFdNvA0PoBPTWhspAPhpk80exVt99zpzAlisfJS0fulQiLXLLQQTznvOG+wDap5t8+dnbL1oY0hE298K79hnCCMS6B1Y4siBl8D9eKQPfMfxA7ROSRhGNw62JbuX4xZT9T70nQfZZGsA7xu7bc9rZx/vetrKZykVjeMiNtc1Q70ntwSo7VuS3pZGcZ6kI2JByvZ5Vh4V57xx4OtTke3mrdd2E5XqQ1hnOVW1iudHwjcpF+yL9cDkHdw2TbnAuFg3vXaSCFTJh7DSciFEf5zwefFEGRVyZXQFIaWV5M2rpnQfyy0Klj8QhM1no7SzkgtNjrcDrF3yAYLurGNqXPLBlXjGAodcGEVuH2NLYLTtLi6hvGwDx0Cw3XziS1vbqzEMCEYsJir1DSMpxtYoLwPbVpOq97bZdQx+n8hDrVrDkCVVWQl+Ase1UC2g4v3G6f00cN5ma3LuQ7K9pAcvelVV+LOgbYL2wb9t/K8sMDaQFmBS7VHnvsRGcN/a1DSudB1tVCNVQXa+yW00CrUkqY3LZt4Fxv6w6TgaWRbJcqwkVrlqmT6+ElVFfCxxSvxZyg6urQBfE/Xw5f8DLBBGqwpoGMm4NJJQUByViWF92a2zB3XMWhXwkje4HJVysR5bbYA9uEXTSwcD52oQJFpD9FWB5LQX/LAhSA7g1hnUMbNwy02n1UJFhYtjo3Ltwy0ms2N0WozkWwE27QBVuXcQt5iKHMN5iVfIBZFWnNyXW0xFjj2IkTQIdgX56v7cYipy7C9cHRdgAYMjce3TLSb74dw0cxrJAi6gFt08369bMLcZDEPlm7lwOYpYB/hdCuoYU03Bw0huaibh7kh52G1U+3eLiSAYTlEDvvOsRhl2hXQ5ZncxrAP9BpHNp8hFIfEohoFK4wW2np/b0k2HcYuJ1HSwzIZNjZNmrwA4f3vA37cyOXZ+/gLX/urAItfh3CoEq+EGrrXDNhUfA6vIMSIQcMGKeDsKlrS+dkUSbESsI/yGrdEx/FmK3NZ1Mq7Du8VEDFw13MCltkc7Yz3Sb3Dbj10NDI9iL+KFvwwn6CLfUUS6GlgXI/mgor50j5FbmahjlAzokLDb7eLPUnhbF5fj8dwCsK6mdAPnDbAc/x4VCx1ThBs4b2fLkRz9L8YwOIYbePbu+thEGZjm2CO055E8EZfBMYzkLzHfTgKmOZZu4BDGkp+uHhwszSQeSfwyhDVcb3fdfUiwx2sBjf6BG/jLdff6uHVLA6Mw8M81haJ/oEs2fXFSLFqgHq8FdVOe7ePJ/8Y0u3stCSN5YrcAQXLs+vfub+qPJNWxb+AVSnHs5dQ8uezv6RfVr99Zev06NYqsFwT7/X2CmMp5+fXr18ue/3qJ/ejktfR/WP8FOoK2QLx2JrUAAAAASUVORK5CYII=" - }, - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0850419998169", - "Connection": "Keep-Alive", - "X-Request-Count": "2165", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4908" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:f8c794c50a4c%0D53eb7709cda1?from_pullrequest_id=3\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:f8c794c50a4c%0D53eb7709cda1?from_pullrequest_id=3\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 3, \"destination\": {\"commit\": {\"hash\": \"53eb7709cda1\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda1\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:54:08.380799+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \" Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"f8c794c50a4c\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/f8c794c50a4c\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/f8c794c50a4c\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:54:09.184099+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/3/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0998129844666", - "Connection": "Keep-Alive", - "X-Request-Count": "3432", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1599" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3/comments/144752707\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3/_/diff#comment-144752707\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 3, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/3\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/3\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:54:09.180121+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:54:09.184099+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752707}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/3/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.041335105896", - "Connection": "Keep-Alive", - "X-Request-Count": "3212", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - } -] diff --git a/source/admin/cypress/fixtures/BitBucket Backend Media Library - Large Media__should show published entry image in global media library.json b/source/admin/cypress/fixtures/BitBucket Backend Media Library - Large Media__should show published entry image in global media library.json deleted file mode 100644 index b1b2f70..0000000 --- a/source/admin/cypress/fixtures/BitBucket Backend Media Library - Large Media__should show published entry image in global media library.json +++ /dev/null @@ -1,1585 +0,0 @@ -[ - { - "method": "GET", - "url": "/2.0/repositories/owner/repo", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0400559902191", - "Connection": "Keep-Alive", - "X-Request-Count": "3902", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2995" - }, - "response": "{\"scm\": \"git\", \"website\": null, \"has_wiki\": false, \"name\": \"repo\", \"links\": {\"watchers\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/watchers\"}, \"branches\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches\"}, \"tags\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/tags\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits\"}, \"clone\": [{\"href\": \"https://owner@bitbucket.org/owner/repo.git\", \"name\": \"https\"}, {\"href\": \"git@bitbucket.org:owner/repo.git\", \"name\": \"ssh\"}], \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"source\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/src\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}, \"hooks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/hooks\"}, \"forks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/forks\"}, \"downloads\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/downloads\"}, \"pullrequests\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests\"}}, \"fork_policy\": \"allow_forks\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\", \"language\": \"\", \"created_on\": \"2020-04-12T09:50:32.743342+00:00\", \"mainbranch\": {\"type\": \"branch\", \"name\": \"master\"}, \"full_name\": \"owner/repo\", \"has_issues\": false, \"owner\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:54:20.854113+00:00\", \"size\": 8603405, \"type\": \"repository\", \"slug\": \"repo\", \"is_private\": false, \"description\": \"\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/user", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0277440547943", - "X-Accepted-OAuth-Scopes": "account", - "Connection": "Keep-Alive", - "X-Request-Count": "2082", - "X-Version": "e1ce49ad4aa3", - "X-Frame-Options": "SAMEORIGIN", - "content-length": "1041" - }, - "response": "{\"name\":\"owner\",\"display_name\":\"owner\",\"links\":{\"avatar\":{\"href\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\"}},\"nickname\":\"owner\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0446760654449", - "Connection": "Keep-Alive", - "X-Request-Count": "1274", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3039" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:50:53+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0513370037079", - "Connection": "Keep-Alive", - "X-Request-Count": "4388", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3039" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/statuses\"}}, \"author\": {\"raw\": \"ownerkah \", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:50:53+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/static/media?max_depth=1&pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0370829105377", - "Connection": "Keep-Alive", - "X-Request-Count": "1923", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "78" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: static/media\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0482001304626", - "Connection": "Keep-Alive", - "X-Request-Count": "4815", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3039" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/statuses\"}}, \"author\": {\"raw\": \"ownerkah \", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:50:53+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts?max_depth=1&pagelen=20", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0513501167297", - "Connection": "Keep-Alive", - "X-Request-Count": "1436", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "6371" - }, - "response": "{\"pagelen\":20,\"values\":[{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"}},\"path\":\"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"53eb7709cda173b8c923b4bef2a51a1ce49d14af\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":1707},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"}},\"path\":\"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"53eb7709cda173b8c923b4bef2a51a1ce49d14af\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2565},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-02-02---A-Brief-History-of-Typography.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"}},\"path\":\"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"53eb7709cda173b8c923b4bef2a51a1ce49d14af\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2786},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"}},\"path\":\"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"53eb7709cda173b8c923b4bef2a51a1ce49d14af\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":16071},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"}},\"path\":\"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"53eb7709cda173b8c923b4bef2a51a1ce49d14af\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":7465}],\"page\":1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0397469997406", - "Connection": "Keep-Alive", - "X-Request-Count": "1485", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1707" - }, - "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0487990379333", - "Connection": "Keep-Alive", - "X-Request-Count": "4470", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2565" - }, - "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n \n\t \n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-02-02---A-Brief-History-of-Typography.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0436408519745", - "Connection": "Keep-Alive", - "X-Request-Count": "1908", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2786" - }, - "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n\n\t\t\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.
\n\t\t\n\t\n\t \n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.115141868591", - "Connection": "Keep-Alive", - "X-Request-Count": "2508", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-02-02---A-Brief-History-of-Typography.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.121730089188", - "Connection": "Keep-Alive", - "X-Request-Count": "2176", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.10258603096", - "Connection": "Keep-Alive", - "X-Request-Count": "1965", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-18-08---The-Birth-of-Movable-Type.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.035001039505", - "Connection": "Keep-Alive", - "X-Request-Count": "1443", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "16071" - }, - "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western worldâs first major printed books, the âFortyâTwoâLineâ Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western worldâs first major printed books, the âFortyâTwoâLineâ Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 â 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n\n\t \n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information â including revolutionary ideas â transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a âsecretâ. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439â1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him âlike a ray of lightâ.\n\n\n\t
Johannes Gutenberg \n\n\t \n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fustâs son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n\n\t
Early wooden printing press as depicted in 1568. \n\n\t \n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454â55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the FustâSchöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the GutenbergâFust shop might have employed as many as 25 craftsmen.\n\n\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of âmovable typeâ.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n\n\t\t\nAll that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to followâyour grace would be able to read it without effort, and indeed without glasses.
\n\t\t\n\t\n\t \n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in âcuneiformâ style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that âthe decisive factor for the birth of typographyâ, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.037337064743", - "Connection": "Keep-Alive", - "X-Request-Count": "4609", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "7465" - }, - "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didnât mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other â the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n\n\n*The 42âLine Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But itâs the third transition that stripped it naked. Typefaces are faceless these days. Theyâre just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the âright oneâ is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\nâ Massimo Vignelli\n\nTypography is not about typefaces. Itâs not about what looks best, itâs about what feels right. What communicates the message best. Typography, in its essence, is about the message. âTypographical design should perform optically what the speaker creates through voice and gesture of his thoughts.â, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because itâs a safe option. Itâs always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still donât spot it in the street.\n\n\n\t\t\nIt is a press, certainly, but a press from which shall flow in inexhaustible streams⦠Through it, god will spread his word.
\n\t\t\n\t\n\t \n\nTypefaces donât look handmade these days. And thatâs all right. They donât have to. Industrialism took that away from them and weâre fine with it. Weâve traded that part of humanity for a process that produces more books that are easier to read. That canât be bad. And it isnât.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> â Eric Gill\n\nWeâve come close to âperfectionâ in the last five centuries. The letters are crisp and without rough edges. We print our compositions with highâprecision printers on a high quality, machine made paper.\n\n\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we donât care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. Thereâs no meaning in our work. Type sizes, leading, margins⦠Itâs all just a few clicks or lines of code. The message isnât important anymore. Thereâs no more âwhyâ behind the âwhatâ.\n\n## Chasing perfection\n\nHuman beings arenât perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2017-18-08---The-Birth-of-Movable-Type.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.107263088226", - "Connection": "Keep-Alive", - "X-Request-Count": "1304", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nKnowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.102475166321", - "Connection": "Keep-Alive", - "X-Request-Count": "4814", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0536968708038", - "Connection": "Keep-Alive", - "X-Request-Count": "843", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name ~ \"cms/\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0749349594116", - "Connection": "Keep-Alive", - "X-Request-Count": "3566", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0631561279297", - "Connection": "Keep-Alive", - "X-Request-Count": "2880", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3039" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:50:53+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0546650886536", - "Connection": "Keep-Alive", - "X-Request-Count": "1179", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "105" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: content/posts/1970-01-01-first-title.md\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0419969558716", - "Connection": "Keep-Alive", - "X-Request-Count": "1726", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3039" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/statuses\"}}, \"author\": {\"raw\": \"ownerkah \", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:50:53+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/.gitattributes", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0545170307159", - "Connection": "Keep-Alive", - "X-Request-Count": "4873", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "220" - }, - "response": "/.github export-ignore\n/.gitattributes export-ignore\n/.editorconfig export-ignore\n/.travis.yml export-ignore\n**/*.js.snap export-ignore\n*.png filter=lfs diff=lfs merge=lfs -text\n*.jpg filter=lfs diff=lfs merge=lfs -text\n", - "status": 200 - }, - { - "body": "{\"operation\":\"upload\",\"transfers\":[\"basic\"],\"objects\":[{\"size\":3470,\"oid\":\"b1d40c19b912d2130d1bed8ff1a62a55c7d932978502e1d8559eb77951c5e8d3\"}]}", - "method": "POST", - "url": "/owner/repo/info/lfs/objects/batch", - "headers": { - "bbr1private": "0", - "bbr1wikiprivate": "0", - "Server": "nginx", - "Vary": "Authorization", - "bbr1repouuid": "97c5226e-9ffb-42c4-948d-3d785a9d0c46", - "Cache-Control": "no-cache", - "Content-Type": "application/vnd.git-lfs+json", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "X-Usage-Output-Ops": "0", - "bbr1reposlug": "repo", - "bbr1hasadmin": "1", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "bbr1scm": "git", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Usage-User-Time": "0.030334", - "X-Usage-System-Time": "0.001515", - "bbuserid": "6965054", - "bbauthhash": "", - "X-Served-By": "app-163", - "X-Consumer-Client-Id": "ATfdeqkMFdgQA3S8Tr", - "bbr1ownerid": "6965054", - "bbr1hasread": "1", - "bbr1issuesprivate": "0", - "bbr1haswrite": "1", - "bbr1size": "8603405", - "X-Usage-Throttled": "True", - "Access-Control-Allow-Origin": "*", - "X-View-Name": "bitbucket.apps.lfs.clientapi.batch.ObjectsBatchHandler", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0462100505829", - "Connection": "Keep-Alive", - "bbusername": "owner", - "X-Token-Id": "47401645", - "X-Usage-Input-Ops": "0", - "X-Request-Count": "829", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "bbr1owner": "owner", - "Content-Length": "104", - "bbr1id": "64027664" - }, - "response": "{\"objects\": [{\"oid\": \"b1d40c19b912d2130d1bed8ff1a62a55c7d932978502e1d8559eb77951c5e8d3\", \"size\": 3470}]}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0396440029144", - "Connection": "Keep-Alive", - "X-Request-Count": "2039", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3039" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/statuses\"}}, \"author\": {\"raw\": \"ownerkah \", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:50:53+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "body": "------WebKitFormBoundaryInJihWjeYUN0L2d9\r\nContent-Disposition: form-data; name=\"content/posts/1970-01-01-first-title.md\"; filename=\"1970-01-01-first-title.md\"\r\nContent-Type: application/octet-stream\r\n\r\n---\ntemplate: post\ntitle: first title\nimage: /media/netlify.png\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\r\n------WebKitFormBoundaryInJihWjeYUN0L2d9\r\nContent-Disposition: form-data; name=\"static/media/netlify.png\"; filename=\"netlify.png\"\r\nContent-Type: text/plain\r\n\r\nversion https://git-lfs.github.com/spec/v1\noid sha256:b1d40c19b912d2130d1bed8ff1a62a55c7d932978502e1d8559eb77951c5e8d3\nsize 3470\n\r\n------WebKitFormBoundaryInJihWjeYUN0L2d9\r\nContent-Disposition: form-data; name=\"message\"\r\n\r\nCreate Post â1970-01-01-first-titleâ\r\n------WebKitFormBoundaryInJihWjeYUN0L2d9\r\nContent-Disposition: form-data; name=\"branch\"\r\n\r\ncms/posts/1970-01-01-first-title\r\n------WebKitFormBoundaryInJihWjeYUN0L2d9\r\nContent-Disposition: form-data; name=\"parents\"\r\n\r\n53eb7709cda173b8c923b4bef2a51a1ce49d14af\r\n------WebKitFormBoundaryInJihWjeYUN0L2d9--\r\n", - "method": "POST", - "url": "/2.0/repositories/owner/repo/src", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "text/html; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/commit/032c0a2fcec6e77cd946f09cc11c1758c239dd49", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.553365945816", - "Connection": "Keep-Alive", - "X-Request-Count": "4252", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "0" - }, - "response": null, - "status": 201 - }, - { - "body": "{\"title\":\"Create Post “1970-01-01-first-title”\",\"source\":{\"branch\":{\"name\":\"cms/posts/1970-01-01-first-title\"}},\"destination\":{\"branch\":{\"name\":\"master\"}},\"description\":\"Automatically generated by Decap CMS\",\"close_source_branch\":true}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.28745508194", - "Connection": "Keep-Alive", - "X-Request-Count": "2154", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "5236" - }, - "response": "{\"rendered\": {\"description\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \" Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"title\": {\"raw\": \"Create Post “1970-01-01-first-title”\", \"markup\": \"markdown\", \"html\": \"Create Post “1970-01-01-first-title”
\", \"type\": \"rendered\"}}, \"type\": \"pullrequest\", \"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:032c0a2fcec6%0D53eb7709cda1?from_pullrequest_id=4\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:032c0a2fcec6%0D53eb7709cda1?from_pullrequest_id=4\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"reviewers\": [], \"id\": 4, \"destination\": {\"commit\": {\"hash\": \"53eb7709cda1\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda1\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:54:43.693304+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"032c0a2fcec6\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/032c0a2fcec6\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/032c0a2fcec6\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 0, \"state\": \"OPEN\", \"task_count\": 0, \"participants\": [], \"reason\": \"\", \"updated_on\": \"2020-04-12T09:54:43.734913+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}", - "status": 201 - }, - { - "body": "{\"content\":{\"raw\":\"decap-cms/draft\"}}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/4/comments", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752724", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0843451023102", - "Connection": "Keep-Alive", - "X-Request-Count": "3721", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1547" - }, - "response": "{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752724\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752724\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:54:44.509998+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:54:44.512075+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752724}", - "status": 201 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.106225013733", - "Connection": "Keep-Alive", - "X-Request-Count": "2176", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4908" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:032c0a2fcec6%0D53eb7709cda1?from_pullrequest_id=4\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:032c0a2fcec6%0D53eb7709cda1?from_pullrequest_id=4\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 4, \"destination\": {\"commit\": {\"hash\": \"53eb7709cda1\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda1\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:54:43.693304+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"032c0a2fcec6\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/032c0a2fcec6\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/032c0a2fcec6\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:54:44.512075+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/4/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0864679813385", - "Connection": "Keep-Alive", - "X-Request-Count": "2155", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1599" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752724\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752724\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:54:44.509998+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:54:44.512075+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752724}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/diff/cms/posts/1970-01-01-first-title..master?binary=false", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "must-revalidate, max-age=0", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.163744926453", - "Connection": "Keep-Alive", - "X-Request-Count": "3878", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "738" - }, - "response": "diff --git a/content/posts/1970-01-01-first-title.md b/content/posts/1970-01-01-first-title.md\nnew file mode 100644\nindex 0000000..5712f24\n--- /dev/null\n+++ b/content/posts/1970-01-01-first-title.md\n@@ -0,0 +1,11 @@\n+---\n+template: post\n+title: first title\n+image: /media/netlify.png\n+date: 1970-01-01T00:00:00.000Z\n+description: first description\n+category: first category\n+tags:\n+ - tag1\n+---\n+first body\n\\ No newline at end of file\ndiff --git a/static/media/netlify.png b/static/media/netlify.png\nnew file mode 100644\nindex 0000000..a137fb3\n--- /dev/null\n+++ b/static/media/netlify.png\n@@ -0,0 +1,3 @@\n+version https://git-lfs.github.com/spec/v1\n+oid sha256:b1d40c19b912d2130d1bed8ff1a62a55c7d932978502e1d8559eb77951c5e8d3\n+size 3470\n", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/4/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0745820999146", - "Connection": "Keep-Alive", - "X-Request-Count": "88", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1599" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752724\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752724\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:54:44.509998+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:54:44.512075+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752724}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.063129901886", - "Connection": "Keep-Alive", - "X-Request-Count": "1315", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3710" - }, - "response": "{\"name\": \"cms/posts/1970-01-01-first-title\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/cms/posts/1970-01-01-first-title\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/cms/posts/1970-01-01-first-title\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"032c0a2fcec6e77cd946f09cc11c1758c239dd49\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/032c0a2fcec6e77cd946f09cc11c1758c239dd49\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/032c0a2fcec6e77cd946f09cc11c1758c239dd49/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/032c0a2fcec6e77cd946f09cc11c1758c239dd49\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/032c0a2fcec6e77cd946f09cc11c1758c239dd49\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/032c0a2fcec6e77cd946f09cc11c1758c239dd49\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/032c0a2fcec6e77cd946f09cc11c1758c239dd49/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/032c0a2fcec6e77cd946f09cc11c1758c239dd49/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}}], \"date\": \"2020-04-12T09:54:42+00:00\", \"message\": \"Create Post “1970-01-01-first-title”\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/032c0a2fcec6e77cd946f09cc11c1758c239dd49/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0462400913239", - "Connection": "Keep-Alive", - "X-Request-Count": "4377", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "180" - }, - "response": "---\ntemplate: post\ntitle: first title\nimage: /media/netlify.png\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0695738792419", - "Connection": "Keep-Alive", - "X-Request-Count": "3214", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3710" - }, - "response": "{\"name\": \"cms/posts/1970-01-01-first-title\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/cms/posts/1970-01-01-first-title\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/cms/posts/1970-01-01-first-title\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"032c0a2fcec6e77cd946f09cc11c1758c239dd49\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/032c0a2fcec6e77cd946f09cc11c1758c239dd49\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/032c0a2fcec6e77cd946f09cc11c1758c239dd49/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/032c0a2fcec6e77cd946f09cc11c1758c239dd49\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/032c0a2fcec6e77cd946f09cc11c1758c239dd49\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/032c0a2fcec6e77cd946f09cc11c1758c239dd49\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/032c0a2fcec6e77cd946f09cc11c1758c239dd49/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/032c0a2fcec6e77cd946f09cc11c1758c239dd49/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}}], \"date\": \"2020-04-12T09:54:42+00:00\", \"message\": \"Create Post “1970-01-01-first-title”\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/032c0a2fcec6e77cd946f09cc11c1758c239dd49/static/media/netlify.png", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "text/html; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.media.atlassian.com/file/b851259d-0ea4-4c32-808d-5d73b564ac66/binarytoken=fakeTokenclient=fakeClient&dl=1&name=netlify.png", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0603711605072", - "Connection": "Keep-Alive", - "X-Request-Count": "4283", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "0" - }, - "response": null, - "status": 302 - }, - { - "method": "GET", - "url": "/file/b851259d-0ea4-4c32-808d-5d73b564ac66/binarytoken=fakeTokenclient=fakeClient&dl=1&name=netlify.png", - "headers": { - "Content-Type": "image/png", - "Content-Length": "3470", - "Server": "globaledge-envoy", - "X-B3-Traceid": "7cfa312bab43a451", - "X-B3-Spanid": "0f7819265254b69c", - "X-B3-Parentspanid": "a740f40b55707307", - "X-B3-Sampled": "1", - "X-Dns-Prefetch-Control": "off", - "X-Frame-Options": "SAMEORIGIN", - "X-Download-Options": "noopen", - "Access-Control-Allow-Origin": "*", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Range, X-Media-Region", - "X-Media-Region": "us-west-1", - "Content-Security-Policy": "script-src 'none'", - "Timing-Allow-Origin": "*", - "Accept-Ranges": "bytes", - "Content-Disposition": "attachment; filename=\"netlify.png\"", - "Cache-Control": "private", - "Atl-Traceid": "7cfa312bab43a451", - "X-Envoy-Upstream-Service-Time": "483", - "Expect-Ct": "report-uri=\"https://web-security-reports.services.atlassian.com/expect-ct-report/dt-api-filestore\", max-age=86400", - "X-Logging-Id": "V1xZRhzmw", - "Strict-Transport-Security": "max-age=63072000; preload", - "X-Content-Type-Options": "nosniff", - "X-Xss-Protection": "1; mode=block" - }, - "response": { - "encoding": "base64", - "content": "iVBORw0KGgoAAAANSUhEUgAAAJcAAACXCAMAAAAvQTlLAAAAwFBMVEX///85rbswtrpAp71DpL03sLs8q7xGob4tubkzs7o+qLwqvLknv7gkwrgpvbhIn75Mm7/x+vrs9fhktcfn9/bg8PMtp7lSr8IWw7U7yL3Y7vAAq7JSzMM+w75MwMGj2dxmv8iLx9O73ORcrMRorMeJ2tJr1MlTx8N8z8+45uWs4OBQu8HH5ulTuMMXqbaW0Ndxvsuq1t4jnrd6ss2TwNUwj7ii4tzP8Ox00syR19ZkxseByNCezdnP5Ox2tsyDv9FhQXEFAAAMiUlEQVR4nO2ci1biyBaGDTcBUaxAEjuoQLQHEQhJ2j7TCLTv/1anau8kdU3wwsW1zvlnVg9UKlVf/r1rVyFjn539X6cSOTWASf2f/9z+87N/agxF5OcN6uf3Mu32JtPtqVEE9X/ccP34NrEktzeibr9JKCW3vo9j1K1L+g/X5bdwrP/jkkqgYjq9Y/3bSxSz7PImfXN5e2Kw/qWoG+H1ScFyt3T9PCXWj0KsU/pV4tblf06HRX5cdoqw/kClOIlnZNKhKovi/O4EYKQDMlsGUezfdTpHL7D9SSeXhoX1/olemhzZMXLXESVRdS7/ZV3+hSt3R3VMdEsTli5yi++OmWOKW4omYNEqfXd1PMdK3ep0IIq+wHkkx8gVVeeqCOsJ+qToV6CjONaf4GQFYHdiFNOex3CM3F1dlIFNgV3Curg4fI71JxdUV1dFaH+g16tAdcVuOLRj5O4CpZPBqyuY/zlnSrEO7Ri6JYMBW4aHUdSoDu3Y08WVESzDm0CvPzkU731gx/zVnTCVxgaeTDWvmJrN1QG5aIY9TwrJnqHDHTNKhrpoUq75Qbmopk8XYoRyrFe4+qQ6hW41m4eJI3ld8cx1VtrMVxcdn12am6GoDoJl39ORX+f5M5PpHxUM8ofcFWHdA7WzXyxynw7+zMn8V2n69BhhhqKCffNpv9Hs3/PxVzx/+8MJi9pk9Tx9XmEUC7GasCgmzfs91jEiYLFwTvmV6eSCW0g7FlGly5FZvjfH+rNKpSLN0RzyPBGnWWVJ35SZmJifdpOONNuTY+S+UtHA7p98wwMwIBMTu4E9yZxxVfbjWB+xNLLm/VR78FcTURp8BvOMA+0jx0iOZSBbKU8+L+aC5bhKx/m6Y30RS+VqqsWSFHNBdXvKBvqqY5JbpjRT+j8VcrE1TF7zYb7mWL/V0rgoGYd71e5Y3etM7D6W9n0+TKvyBcfIfUsHkz0zPMuzTFYBrAHzxx9kVFSfd6w/a6FK0AzV4uzsXx7O/AbWHgw4FgX7pGMkwzKCpWRP5nudIUY77w0Bz5YjDjqofMqx/n1LkIkM2KbCLVPhwEHfNIWeS9b0yqFardnwc1iz1m4uKmFF+pTzdSgeOAZ5N8DnVIPZ/JPpZbcUVcxs+enCTot5RdihyHAmdLNTrMFs/YVj2FwFM3Jhfk3n09VMaBQPHGgaY/UHmFbCpu8sP27bcvAOMjwM6u3C3P5qNkTGUWvQGvHjG5mPBuFHThc23EtmGpfGBoc93xhgIZz51EMpxqNBnWr2bsf69boN8xm5RDKM4szIVRnM9ANHLn9No1FHvdMxsqiHa3i1DAvIMjYYcWjGYpqtzAk+X8MgKdfoXY7ZrGsIATobFXIBG6SNOYogluUj7eOsM2wNOBSbDMOz0y0QPINfL+OCo97ZazEUaCC74a+BSsCiWux0zF6Eqbnwdhi2CtEGEKNhixFkxQ1etipSN+W5hzOVijq22OFYjlWvx9AwqhdxDWBr0cqv0mmw0uJIy0NYV1UOZi8s3hWWtAMvTVPi+i7PwNnQPJ2zXihcVhmYPbKsek42grY4NIMN8HOsXnt5j9m8eC47ngmm0VmtUWFnYoHyoEOgWCRNZHDRMZdekGkPJGthu/ZH9RQN57UKkp8G0ZLJhEgCmgCHUVwX2DVoCfvQfJ1tgs4oDEfC8cZfWiHHKnCM5FgZmIXLdxpysIysPIojcd+e0U6sN5kv02HWwiE3GFlhNmvDVC7sRaPRsGS0NJJraflgkGBOUxTpChQ2xiWjas2YEc/5KNQ04TQ5X4cpWaOhJ7/dsGQuBINF3lcWT6u1gA1obcCaiefCpxarVC1cQUt5kCHfFe3lArEogwJmL9xGwwCGzs6VeoO4vrZ70k2HR2I+atXT+gm2r6UhaGKteWWzgwjnd5VQNrCZEUtk6QYuRxKfn56mlL1AWIH9ofgYQ+heV2TVFwGncCJgcBsiVpRhaZ6FATDIkYT5l5yV8oUzaQXWxQcBe526LFayrHCx5HfZsee6DTfiWGMRSw2mrUYyjDGKQktdPIXGai0P2RC+pbRm5SHaCrGnprnj3EIZSyHTIrmABh6W0FryFegvF9rmF7ILgdQsTuD2Yk62HbtJZuFY4xLB0B4hPQAizqdZxGKuq0z5g/CwW5Ig2xtjMZxxnl06mEjmiHFDTDt7JywqEhjOCfVs7YxMWFCcgMyN9A+U9nzjefSSSpfdjefc9IExiumiF7N2aWLiT2LpVlniZK7rxYZ9iGyDTdTW2DCSG4xkyJRFkRZtYRxlBcpcYGmoUVkNRTSc5u+QbCceq8bBCLiBL4P5BpONrUCfF3a6AgupaEFgdzthOVNmWi8wkkFU43FPYGOjKFV4bQkB9JclUBB5ZmvwHqw2lettisioAzTlIoaPA1i8poBx8goso4IDH+u33AkFVFSJMFccm75Q8mnKsajSgczu2rFerJBGTHJYjuOdVBmXUO/PSLvq9caBoy1VwlLOasRqO9g25gdJ+Q9Z7GYSlULlZrXbnvzkvSqLrRstA18/nBmOa2QehTqCSS78iGlRwiRi9dSDjoftLiWOqHPGuHGqeLEbKONiY/mNYq62IE8/GPaEy7TIRbHJuSyE76aiXOyGuWFH0bmqqlvoWFUggypG4QrYxg33PUywz7D+cQGX6BXNceMHD8kxhtZglcL11qbexI+XERYSM1EmPE9FZi55QpNbMFdbAWOuNZaFuUZsP1jT3YN2Kk5qF9ayEUrBahemDa5KMc+iwm2B09H9gTlXxAUj6FcVpqoxt3IwryqSjY3fZhid28ZQgtX5aQt8T6u2tzUsc24JjmVgvQ3vqdwT9JZzw4Kwg+XYk9jc9MkCtwyKUpW6BWNTxyha0gt4xyBS7tqwyRfRxvDdgO0EsOsjSHZs8d1iKEa1wy0YuFdNvA0PoBPTWhspAPhpk80exVt99zpzAlisfJS0fulQiLXLLQQTznvOG+wDap5t8+dnbL1oY0hE298K79hnCCMS6B1Y4siBl8D9eKQPfMfxA7ROSRhGNw62JbuX4xZT9T70nQfZZGsA7xu7bc9rZx/vetrKZykVjeMiNtc1Q70ntwSo7VuS3pZGcZ6kI2JByvZ5Vh4V57xx4OtTke3mrdd2E5XqQ1hnOVW1iudHwjcpF+yL9cDkHdw2TbnAuFg3vXaSCFTJh7DSciFEf5zwefFEGRVyZXQFIaWV5M2rpnQfyy0Klj8QhM1no7SzkgtNjrcDrF3yAYLurGNqXPLBlXjGAodcGEVuH2NLYLTtLi6hvGwDx0Cw3XziS1vbqzEMCEYsJir1DSMpxtYoLwPbVpOq97bZdQx+n8hDrVrDkCVVWQl+Ase1UC2g4v3G6f00cN5ma3LuQ7K9pAcvelVV+LOgbYL2wb9t/K8sMDaQFmBS7VHnvsRGcN/a1DSudB1tVCNVQXa+yW00CrUkqY3LZt4Fxv6w6TgaWRbJcqwkVrlqmT6+ElVFfCxxSvxZyg6urQBfE/Xw5f8DLBBGqwpoGMm4NJJQUByViWF92a2zB3XMWhXwkje4HJVysR5bbYA9uEXTSwcD52oQJFpD9FWB5LQX/LAhSA7g1hnUMbNwy02n1UJFhYtjo3Ltwy0ms2N0WozkWwE27QBVuXcQt5iKHMN5iVfIBZFWnNyXW0xFjj2IkTQIdgX56v7cYipy7C9cHRdgAYMjce3TLSb74dw0cxrJAi6gFt08369bMLcZDEPlm7lwOYpYB/hdCuoYU03Bw0huaibh7kh52G1U+3eLiSAYTlEDvvOsRhl2hXQ5ZncxrAP9BpHNp8hFIfEohoFK4wW2np/b0k2HcYuJ1HSwzIZNjZNmrwA4f3vA37cyOXZ+/gLX/urAItfh3CoEq+EGrrXDNhUfA6vIMSIQcMGKeDsKlrS+dkUSbESsI/yGrdEx/FmK3NZ1Mq7Du8VEDFw13MCltkc7Yz3Sb3Dbj10NDI9iL+KFvwwn6CLfUUS6GlgXI/mgor50j5FbmahjlAzokLDb7eLPUnhbF5fj8dwCsK6mdAPnDbAc/x4VCx1ThBs4b2fLkRz9L8YwOIYbePbu+thEGZjm2CO055E8EZfBMYzkLzHfTgKmOZZu4BDGkp+uHhwszSQeSfwyhDVcb3fdfUiwx2sBjf6BG/jLdff6uHVLA6Mw8M81haJ/oEs2fXFSLFqgHq8FdVOe7ePJ/8Y0u3stCSN5YrcAQXLs+vfub+qPJNWxb+AVSnHs5dQ8uezv6RfVr99Zev06NYqsFwT7/X2CmMp5+fXr18ue/3qJ/ejktfR/WP8FOoK2QLx2JrUAAAAASUVORK5CYII=" - }, - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0974149703979", - "Connection": "Keep-Alive", - "X-Request-Count": "3826", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4908" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:032c0a2fcec6%0D53eb7709cda1?from_pullrequest_id=4\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:032c0a2fcec6%0D53eb7709cda1?from_pullrequest_id=4\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 4, \"destination\": {\"commit\": {\"hash\": \"53eb7709cda1\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda1\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:54:43.693304+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \" Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"032c0a2fcec6\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/032c0a2fcec6\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/032c0a2fcec6\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:54:44.512075+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/4/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0782518386841", - "Connection": "Keep-Alive", - "X-Request-Count": "2911", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1599" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752724\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752724\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:54:44.509998+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:54:44.512075+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752724}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0957520008087", - "Connection": "Keep-Alive", - "X-Request-Count": "3279", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4908" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:032c0a2fcec6%0D53eb7709cda1?from_pullrequest_id=4\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:032c0a2fcec6%0D53eb7709cda1?from_pullrequest_id=4\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 4, \"destination\": {\"commit\": {\"hash\": \"53eb7709cda1\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda1\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:54:43.693304+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"032c0a2fcec6\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/032c0a2fcec6\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/032c0a2fcec6\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:54:44.512075+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/4/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.051255941391", - "Connection": "Keep-Alive", - "X-Request-Count": "4493", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/4/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0929880142212", - "Connection": "Keep-Alive", - "X-Request-Count": "2357", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1599" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752724\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752724\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:54:44.509998+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:54:44.512075+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752724}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "body": "{\"content\":{\"raw\":\"decap-cms/pending_publish\"}}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/4/comments", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752729", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0777590274811", - "Connection": "Keep-Alive", - "X-Request-Count": "3772", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1567" - }, - "response": "{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752729\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752729\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_publish\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_publish
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:54:54.241375+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:54:54.243691+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752729}", - "status": 201 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0811569690704", - "Connection": "Keep-Alive", - "X-Request-Count": "219", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4908" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:032c0a2fcec6%0D53eb7709cda1?from_pullrequest_id=4\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:032c0a2fcec6%0D53eb7709cda1?from_pullrequest_id=4\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 4, \"destination\": {\"commit\": {\"hash\": \"53eb7709cda1\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda1\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:54:43.693304+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"032c0a2fcec6\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/032c0a2fcec6\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/032c0a2fcec6\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 2, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:54:54.243691+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/4/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.104587078094", - "Connection": "Keep-Alive", - "X-Request-Count": "2128", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3168" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752724\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752724\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:54:44.509998+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:54:44.512075+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752724}, {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752729\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752729\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_publish\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_publish
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:54:54.241375+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:54:54.243691+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752729}], \"page\": 1, \"size\": 2}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.11691403389", - "Connection": "Keep-Alive", - "X-Request-Count": "173", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4908" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:032c0a2fcec6%0D53eb7709cda1?from_pullrequest_id=4\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:032c0a2fcec6%0D53eb7709cda1?from_pullrequest_id=4\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 4, \"destination\": {\"commit\": {\"hash\": \"53eb7709cda1\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda1\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:54:43.693304+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"032c0a2fcec6\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/032c0a2fcec6\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/032c0a2fcec6\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 2, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:54:54.243691+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/4/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0562570095062", - "Connection": "Keep-Alive", - "X-Request-Count": "4311", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/4/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.113505840302", - "Connection": "Keep-Alive", - "X-Request-Count": "265", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3168" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752724\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752724\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:54:44.509998+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:54:44.512075+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752724}, {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments/144752729\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4/_/diff#comment-144752729\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 4, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_publish\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_publish
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:54:54.241375+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:54:54.243691+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752729}], \"page\": 1, \"size\": 2}", - "status": 200 - }, - { - "body": "{\"message\":\"Automatically generated. Merged on Decap CMS.\",\"close_source_branch\":true,\"merge_strategy\":\"merge_commit\"}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/4/merge", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "1.55399298668", - "Connection": "Keep-Alive", - "X-Request-Count": "3755", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "7883" - }, - "response": "{\"rendered\": {\"description\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"title\": {\"raw\": \"Create Post “1970-01-01-first-title”\", \"markup\": \"markdown\", \"html\": \"Create Post “1970-01-01-first-title”
\", \"type\": \"rendered\"}}, \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:2089e8fee28d%0D53eb7709cda1?from_pullrequest_id=4\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/4\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:2089e8fee28d%0D53eb7709cda1?from_pullrequest_id=4\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/4/statuses\"}}, \"close_source_branch\": true, \"reviewers\": [], \"created_on\": \"2020-04-12T09:54:43.693304+00:00\", \"id\": 4, \"closed_on\": \"2020-04-12T09:55:02.782775+00:00\", \"title\": \"Create Post “1970-01-01-first-title”\", \"destination\": {\"commit\": {\"hash\": \"53eb7709cda1\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda1\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"master\"}}, \"comment_count\": 2, \"source\": {\"commit\": {\"hash\": \"032c0a2fcec6\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/032c0a2fcec6\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/032c0a2fcec6\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"state\": \"MERGED\", \"type\": \"pullrequest\", \"description\": \"Automatically generated by Decap CMS\", \"reason\": \"\", \"task_count\": 0, \"merge_commit\": {\"hash\": \"2089e8fee28d8777e6365c3c27435c5566c8dd7d\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2089e8fee28d8777e6365c3c27435c5566c8dd7d\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2089e8fee28d8777e6365c3c27435c5566c8dd7d\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"summary\": {\"raw\": \"Automatically generated. Merged on Decap CMS.\\n\", \"markup\": \"markdown\", \"html\": \" Automatically generated. Merged on Decap CMS.
\", \"type\": \"rendered\"}, \"date\": \"2020-04-12T09:55:01+00:00\", \"message\": \"Automatically generated. Merged on Decap CMS.\\n\", \"type\": \"commit\"}, \"closed_by\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"participants\": [{\"role\": \"PARTICIPANT\", \"participated_on\": \"2020-04-12T09:54:54.243691+00:00\", \"type\": \"participant\", \"approved\": false, \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}], \"updated_on\": \"2020-04-12T09:55:02.782797+00:00\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0798001289368", - "Connection": "Keep-Alive", - "X-Request-Count": "541", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3850" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"2089e8fee28d8777e6365c3c27435c5566c8dd7d\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2089e8fee28d8777e6365c3c27435c5566c8dd7d\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2089e8fee28d8777e6365c3c27435c5566c8dd7d/comments\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2089e8fee28d8777e6365c3c27435c5566c8dd7d\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2089e8fee28d8777e6365c3c27435c5566c8dd7d\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2089e8fee28d8777e6365c3c27435c5566c8dd7d/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2089e8fee28d8777e6365c3c27435c5566c8dd7d/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}}, {\"hash\": \"032c0a2fcec6e77cd946f09cc11c1758c239dd49\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/032c0a2fcec6e77cd946f09cc11c1758c239dd49\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/032c0a2fcec6e77cd946f09cc11c1758c239dd49\"}}}], \"date\": \"2020-04-12T09:55:01+00:00\", \"message\": \"Automatically generated. Merged on Decap CMS.\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/2089e8fee28d8777e6365c3c27435c5566c8dd7d/static/media?max_depth=1&pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0588700771332", - "Connection": "Keep-Alive", - "X-Request-Count": "3365", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1168" - }, - "response": "{\"pagelen\":100,\"values\":[{\"mimetype\":\"image/png\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/2089e8fee28d8777e6365c3c27435c5566c8dd7d/static/media/netlify.png\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/2089e8fee28d8777e6365c3c27435c5566c8dd7d/static/media/netlify.png?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/2089e8fee28d8777e6365c3c27435c5566c8dd7d/static/media/netlify.png\"}},\"path\":\"static/media/netlify.png\",\"commit\":{\"type\":\"commit\",\"hash\":\"2089e8fee28d8777e6365c3c27435c5566c8dd7d\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2089e8fee28d8777e6365c3c27435c5566c8dd7d\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/2089e8fee28d8777e6365c3c27435c5566c8dd7d\"}}},\"attributes\":[\"binary\",\"lfs\"],\"type\":\"commit_file\",\"size\":3470}],\"page\":1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0642890930176", - "Connection": "Keep-Alive", - "X-Request-Count": "58", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3850" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"2089e8fee28d8777e6365c3c27435c5566c8dd7d\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2089e8fee28d8777e6365c3c27435c5566c8dd7d\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2089e8fee28d8777e6365c3c27435c5566c8dd7d/comments\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2089e8fee28d8777e6365c3c27435c5566c8dd7d\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2089e8fee28d8777e6365c3c27435c5566c8dd7d\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2089e8fee28d8777e6365c3c27435c5566c8dd7d/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2089e8fee28d8777e6365c3c27435c5566c8dd7d/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}}, {\"hash\": \"032c0a2fcec6e77cd946f09cc11c1758c239dd49\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/032c0a2fcec6e77cd946f09cc11c1758c239dd49\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/032c0a2fcec6e77cd946f09cc11c1758c239dd49\"}}}], \"date\": \"2020-04-12T09:55:01+00:00\", \"message\": \"Automatically generated. Merged on Decap CMS.\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/2089e8fee28d8777e6365c3c27435c5566c8dd7d/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0583410263062", - "Connection": "Keep-Alive", - "X-Request-Count": "1470", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "180" - }, - "response": "---\ntemplate: post\ntitle: first title\nimage: /media/netlify.png\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0552501678467", - "Connection": "Keep-Alive", - "X-Request-Count": "3591", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0759658813477", - "Connection": "Keep-Alive", - "X-Request-Count": "4614", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3850" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"2089e8fee28d8777e6365c3c27435c5566c8dd7d\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2089e8fee28d8777e6365c3c27435c5566c8dd7d\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2089e8fee28d8777e6365c3c27435c5566c8dd7d/comments\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2089e8fee28d8777e6365c3c27435c5566c8dd7d\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2089e8fee28d8777e6365c3c27435c5566c8dd7d\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2089e8fee28d8777e6365c3c27435c5566c8dd7d/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2089e8fee28d8777e6365c3c27435c5566c8dd7d/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}}, {\"hash\": \"032c0a2fcec6e77cd946f09cc11c1758c239dd49\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/032c0a2fcec6e77cd946f09cc11c1758c239dd49\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/032c0a2fcec6e77cd946f09cc11c1758c239dd49\"}}}], \"date\": \"2020-04-12T09:55:01+00:00\", \"message\": \"Automatically generated. Merged on Decap CMS.\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/2089e8fee28d8777e6365c3c27435c5566c8dd7d/static/media/netlify.png", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "text/html; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.media.atlassian.com/file/b851259d-0ea4-4c32-808d-5d73b564ac66/binarytoken=fakeTokenclient=fakeClient&dl=1&name=netlify.png", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0523951053619", - "Connection": "Keep-Alive", - "X-Request-Count": "1945", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "0" - }, - "response": null, - "status": 302 - }, - { - "method": "GET", - "url": "/file/b851259d-0ea4-4c32-808d-5d73b564ac66/binarytoken=fakeTokenclient=fakeClient&dl=1&name=netlify.png", - "headers": { - "Content-Type": "image/png", - "Content-Length": "3470", - "Server": "globaledge-envoy", - "X-B3-Traceid": "d87d97d4e170fc1e", - "X-B3-Spanid": "ea64f13883491d8e", - "X-B3-Parentspanid": "13d77821f2ef12bd", - "X-B3-Sampled": "1", - "X-Dns-Prefetch-Control": "off", - "X-Frame-Options": "SAMEORIGIN", - "X-Download-Options": "noopen", - "Access-Control-Allow-Origin": "*", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Range, X-Media-Region", - "X-Media-Region": "us-west-1", - "Content-Security-Policy": "script-src 'none'", - "Timing-Allow-Origin": "*", - "Accept-Ranges": "bytes", - "Content-Disposition": "attachment; filename=\"netlify.png\"", - "Cache-Control": "private", - "Atl-Traceid": "d87d97d4e170fc1e", - "X-Envoy-Upstream-Service-Time": "246", - "Expect-Ct": "report-uri=\"https://web-security-reports.services.atlassian.com/expect-ct-report/dt-api-filestore\", max-age=86400", - "X-Logging-Id": "V1xZRhzmw", - "Strict-Transport-Security": "max-age=63072000; preload", - "X-Content-Type-Options": "nosniff", - "X-Xss-Protection": "1; mode=block" - }, - "response": { - "encoding": "base64", - "content": "iVBORw0KGgoAAAANSUhEUgAAAJcAAACXCAMAAAAvQTlLAAAAwFBMVEX///85rbswtrpAp71DpL03sLs8q7xGob4tubkzs7o+qLwqvLknv7gkwrgpvbhIn75Mm7/x+vrs9fhktcfn9/bg8PMtp7lSr8IWw7U7yL3Y7vAAq7JSzMM+w75MwMGj2dxmv8iLx9O73ORcrMRorMeJ2tJr1MlTx8N8z8+45uWs4OBQu8HH5ulTuMMXqbaW0Ndxvsuq1t4jnrd6ss2TwNUwj7ii4tzP8Ox00syR19ZkxseByNCezdnP5Ox2tsyDv9FhQXEFAAAMiUlEQVR4nO2ci1biyBaGDTcBUaxAEjuoQLQHEQhJ2j7TCLTv/1anau8kdU3wwsW1zvlnVg9UKlVf/r1rVyFjn539X6cSOTWASf2f/9z+87N/agxF5OcN6uf3Mu32JtPtqVEE9X/ccP34NrEktzeibr9JKCW3vo9j1K1L+g/X5bdwrP/jkkqgYjq9Y/3bSxSz7PImfXN5e2Kw/qWoG+H1ScFyt3T9PCXWj0KsU/pV4tblf06HRX5cdoqw/kClOIlnZNKhKovi/O4EYKQDMlsGUezfdTpHL7D9SSeXhoX1/olemhzZMXLXESVRdS7/ZV3+hSt3R3VMdEsTli5yi++OmWOKW4omYNEqfXd1PMdK3ep0IIq+wHkkx8gVVeeqCOsJ+qToV6CjONaf4GQFYHdiFNOex3CM3F1dlIFNgV3Curg4fI71JxdUV1dFaH+g16tAdcVuOLRj5O4CpZPBqyuY/zlnSrEO7Ri6JYMBW4aHUdSoDu3Y08WVESzDm0CvPzkU731gx/zVnTCVxgaeTDWvmJrN1QG5aIY9TwrJnqHDHTNKhrpoUq75Qbmopk8XYoRyrFe4+qQ6hW41m4eJI3ld8cx1VtrMVxcdn12am6GoDoJl39ORX+f5M5PpHxUM8ofcFWHdA7WzXyxynw7+zMn8V2n69BhhhqKCffNpv9Hs3/PxVzx/+8MJi9pk9Tx9XmEUC7GasCgmzfs91jEiYLFwTvmV6eSCW0g7FlGly5FZvjfH+rNKpSLN0RzyPBGnWWVJ35SZmJifdpOONNuTY+S+UtHA7p98wwMwIBMTu4E9yZxxVfbjWB+xNLLm/VR78FcTURp8BvOMA+0jx0iOZSBbKU8+L+aC5bhKx/m6Y30RS+VqqsWSFHNBdXvKBvqqY5JbpjRT+j8VcrE1TF7zYb7mWL/V0rgoGYd71e5Y3etM7D6W9n0+TKvyBcfIfUsHkz0zPMuzTFYBrAHzxx9kVFSfd6w/a6FK0AzV4uzsXx7O/AbWHgw4FgX7pGMkwzKCpWRP5nudIUY77w0Bz5YjDjqofMqx/n1LkIkM2KbCLVPhwEHfNIWeS9b0yqFardnwc1iz1m4uKmFF+pTzdSgeOAZ5N8DnVIPZ/JPpZbcUVcxs+enCTot5RdihyHAmdLNTrMFs/YVj2FwFM3Jhfk3n09VMaBQPHGgaY/UHmFbCpu8sP27bcvAOMjwM6u3C3P5qNkTGUWvQGvHjG5mPBuFHThc23EtmGpfGBoc93xhgIZz51EMpxqNBnWr2bsf69boN8xm5RDKM4szIVRnM9ANHLn9No1FHvdMxsqiHa3i1DAvIMjYYcWjGYpqtzAk+X8MgKdfoXY7ZrGsIATobFXIBG6SNOYogluUj7eOsM2wNOBSbDMOz0y0QPINfL+OCo97ZazEUaCC74a+BSsCiWux0zF6Eqbnwdhi2CtEGEKNhixFkxQ1etipSN+W5hzOVijq22OFYjlWvx9AwqhdxDWBr0cqv0mmw0uJIy0NYV1UOZi8s3hWWtAMvTVPi+i7PwNnQPJ2zXihcVhmYPbKsek42grY4NIMN8HOsXnt5j9m8eC47ngmm0VmtUWFnYoHyoEOgWCRNZHDRMZdekGkPJGthu/ZH9RQN57UKkp8G0ZLJhEgCmgCHUVwX2DVoCfvQfJ1tgs4oDEfC8cZfWiHHKnCM5FgZmIXLdxpysIysPIojcd+e0U6sN5kv02HWwiE3GFlhNmvDVC7sRaPRsGS0NJJraflgkGBOUxTpChQ2xiWjas2YEc/5KNQ04TQ5X4cpWaOhJ7/dsGQuBINF3lcWT6u1gA1obcCaiefCpxarVC1cQUt5kCHfFe3lArEogwJmL9xGwwCGzs6VeoO4vrZ70k2HR2I+atXT+gm2r6UhaGKteWWzgwjnd5VQNrCZEUtk6QYuRxKfn56mlL1AWIH9ofgYQ+heV2TVFwGncCJgcBsiVpRhaZ6FATDIkYT5l5yV8oUzaQXWxQcBe526LFayrHCx5HfZsee6DTfiWGMRSw2mrUYyjDGKQktdPIXGai0P2RC+pbRm5SHaCrGnprnj3EIZSyHTIrmABh6W0FryFegvF9rmF7ILgdQsTuD2Yk62HbtJZuFY4xLB0B4hPQAizqdZxGKuq0z5g/CwW5Ig2xtjMZxxnl06mEjmiHFDTDt7JywqEhjOCfVs7YxMWFCcgMyN9A+U9nzjefSSSpfdjefc9IExiumiF7N2aWLiT2LpVlniZK7rxYZ9iGyDTdTW2DCSG4xkyJRFkRZtYRxlBcpcYGmoUVkNRTSc5u+QbCceq8bBCLiBL4P5BpONrUCfF3a6AgupaEFgdzthOVNmWi8wkkFU43FPYGOjKFV4bQkB9JclUBB5ZmvwHqw2lettisioAzTlIoaPA1i8poBx8goso4IDH+u33AkFVFSJMFccm75Q8mnKsajSgczu2rFerJBGTHJYjuOdVBmXUO/PSLvq9caBoy1VwlLOasRqO9g25gdJ+Q9Z7GYSlULlZrXbnvzkvSqLrRstA18/nBmOa2QehTqCSS78iGlRwiRi9dSDjoftLiWOqHPGuHGqeLEbKONiY/mNYq62IE8/GPaEy7TIRbHJuSyE76aiXOyGuWFH0bmqqlvoWFUggypG4QrYxg33PUywz7D+cQGX6BXNceMHD8kxhtZglcL11qbexI+XERYSM1EmPE9FZi55QpNbMFdbAWOuNZaFuUZsP1jT3YN2Kk5qF9ayEUrBahemDa5KMc+iwm2B09H9gTlXxAUj6FcVpqoxt3IwryqSjY3fZhid28ZQgtX5aQt8T6u2tzUsc24JjmVgvQ3vqdwT9JZzw4Kwg+XYk9jc9MkCtwyKUpW6BWNTxyha0gt4xyBS7tqwyRfRxvDdgO0EsOsjSHZs8d1iKEa1wy0YuFdNvA0PoBPTWhspAPhpk80exVt99zpzAlisfJS0fulQiLXLLQQTznvOG+wDap5t8+dnbL1oY0hE298K79hnCCMS6B1Y4siBl8D9eKQPfMfxA7ROSRhGNw62JbuX4xZT9T70nQfZZGsA7xu7bc9rZx/vetrKZykVjeMiNtc1Q70ntwSo7VuS3pZGcZ6kI2JByvZ5Vh4V57xx4OtTke3mrdd2E5XqQ1hnOVW1iudHwjcpF+yL9cDkHdw2TbnAuFg3vXaSCFTJh7DSciFEf5zwefFEGRVyZXQFIaWV5M2rpnQfyy0Klj8QhM1no7SzkgtNjrcDrF3yAYLurGNqXPLBlXjGAodcGEVuH2NLYLTtLi6hvGwDx0Cw3XziS1vbqzEMCEYsJir1DSMpxtYoLwPbVpOq97bZdQx+n8hDrVrDkCVVWQl+Ase1UC2g4v3G6f00cN5ma3LuQ7K9pAcvelVV+LOgbYL2wb9t/K8sMDaQFmBS7VHnvsRGcN/a1DSudB1tVCNVQXa+yW00CrUkqY3LZt4Fxv6w6TgaWRbJcqwkVrlqmT6+ElVFfCxxSvxZyg6urQBfE/Xw5f8DLBBGqwpoGMm4NJJQUByViWF92a2zB3XMWhXwkje4HJVysR5bbYA9uEXTSwcD52oQJFpD9FWB5LQX/LAhSA7g1hnUMbNwy02n1UJFhYtjo3Ltwy0ms2N0WozkWwE27QBVuXcQt5iKHMN5iVfIBZFWnNyXW0xFjj2IkTQIdgX56v7cYipy7C9cHRdgAYMjce3TLSb74dw0cxrJAi6gFt08369bMLcZDEPlm7lwOYpYB/hdCuoYU03Bw0huaibh7kh52G1U+3eLiSAYTlEDvvOsRhl2hXQ5ZncxrAP9BpHNp8hFIfEohoFK4wW2np/b0k2HcYuJ1HSwzIZNjZNmrwA4f3vA37cyOXZ+/gLX/urAItfh3CoEq+EGrrXDNhUfA6vIMSIQcMGKeDsKlrS+dkUSbESsI/yGrdEx/FmK3NZ1Mq7Du8VEDFw13MCltkc7Yz3Sb3Dbj10NDI9iL+KFvwwn6CLfUUS6GlgXI/mgor50j5FbmahjlAzokLDb7eLPUnhbF5fj8dwCsK6mdAPnDbAc/x4VCx1ThBs4b2fLkRz9L8YwOIYbePbu+thEGZjm2CO055E8EZfBMYzkLzHfTgKmOZZu4BDGkp+uHhwszSQeSfwyhDVcb3fdfUiwx2sBjf6BG/jLdff6uHVLA6Mw8M81haJ/oEs2fXFSLFqgHq8FdVOe7ePJ/8Y0u3stCSN5YrcAQXLs+vfub+qPJNWxb+AVSnHs5dQ8uezv6RfVr99Zev06NYqsFwT7/X2CmMp5+fXr18ue/3qJ/ejktfR/WP8FOoK2QLx2JrUAAAAASUVORK5CYII=" - }, - "status": 200 - }, - { - "body": "{\"ref\":{\"name\":\"refs/heads/master\"}}", - "method": "POST", - "url": "/owner/repo.git/info/lfs/locks/verify", - "headers": { - "Server": "nginx", - "Cache-Control": "no-cache", - "Content-Type": "text/html", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "X-Usage-Output-Ops": "0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Usage-User-Time": "0.021242", - "X-Usage-System-Time": "0.001170", - "bbuserid": "6965054", - "bbauthhash": "85825d9e95e23cd03a5fd66443596e6bee282889", - "X-Served-By": "app-135", - "X-Consumer-Client-Id": "ATfdeqkMFdgQA3S8Tr", - "X-Usage-Throttled": "True", - "X-Static-Version": "e1ce49ad4aa3", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.04048204422", - "Connection": "Keep-Alive", - "X-Token-Id": "47401645", - "bbusername": "owner", - "X-Usage-Input-Ops": "0", - "X-Version": "e1ce49ad4aa3", - "X-Request-Count": "1104", - "X-Frame-Options": "SAMEORIGIN", - "content-length": "77" - }, - "response": " Not Found
The requested resource was not found on this server.
", - "status": 404 - } -] diff --git a/source/admin/cypress/fixtures/BitBucket Backend Media Library - Large Media__should show published entry image in grid view.json b/source/admin/cypress/fixtures/BitBucket Backend Media Library - Large Media__should show published entry image in grid view.json deleted file mode 100644 index f658948..0000000 --- a/source/admin/cypress/fixtures/BitBucket Backend Media Library - Large Media__should show published entry image in grid view.json +++ /dev/null @@ -1,1496 +0,0 @@ -[ - { - "method": "GET", - "url": "/2.0/repositories/owner/repo", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0443298816681", - "Connection": "Keep-Alive", - "X-Request-Count": "3205", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2995" - }, - "response": "{\"scm\": \"git\", \"website\": null, \"has_wiki\": false, \"name\": \"repo\", \"links\": {\"watchers\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/watchers\"}, \"branches\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches\"}, \"tags\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/tags\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits\"}, \"clone\": [{\"href\": \"https://owner@bitbucket.org/owner/repo.git\", \"name\": \"https\"}, {\"href\": \"git@bitbucket.org:owner/repo.git\", \"name\": \"ssh\"}], \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"source\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/src\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}, \"hooks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/hooks\"}, \"forks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/forks\"}, \"downloads\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/downloads\"}, \"pullrequests\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests\"}}, \"fork_policy\": \"allow_forks\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\", \"language\": \"\", \"created_on\": \"2020-04-12T09:50:32.743342+00:00\", \"mainbranch\": {\"type\": \"branch\", \"name\": \"master\"}, \"full_name\": \"owner/repo\", \"has_issues\": false, \"owner\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:55:24.698517+00:00\", \"size\": 8617168, \"type\": \"repository\", \"slug\": \"repo\", \"is_private\": false, \"description\": \"\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/user", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0304040908813", - "X-Accepted-OAuth-Scopes": "account", - "Connection": "Keep-Alive", - "X-Request-Count": "3137", - "X-Version": "e1ce49ad4aa3", - "X-Frame-Options": "SAMEORIGIN", - "content-length": "1041" - }, - "response": "{\"name\":\"owner\",\"display_name\":\"owner\",\"links\":{\"avatar\":{\"href\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\"}},\"nickname\":\"owner\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0480129718781", - "Connection": "Keep-Alive", - "X-Request-Count": "2679", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3039" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:50:53+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0524179935455", - "Connection": "Keep-Alive", - "X-Request-Count": "962", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3039" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/statuses\"}}, \"author\": {\"raw\": \"ownerkah \", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:50:53+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/static/media?max_depth=1&pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0941569805145", - "Connection": "Keep-Alive", - "X-Request-Count": "24", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "78" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: static/media\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0483019351959", - "Connection": "Keep-Alive", - "X-Request-Count": "3027", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3039" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/statuses\"}}, \"author\": {\"raw\": \"ownerkah \", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:50:53+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts?max_depth=1&pagelen=20", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0458550453186", - "Connection": "Keep-Alive", - "X-Request-Count": "29", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "6371" - }, - "response": "{\"pagelen\":20,\"values\":[{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"}},\"path\":\"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"53eb7709cda173b8c923b4bef2a51a1ce49d14af\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":1707},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"}},\"path\":\"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"53eb7709cda173b8c923b4bef2a51a1ce49d14af\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2565},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-02-02---A-Brief-History-of-Typography.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"}},\"path\":\"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"53eb7709cda173b8c923b4bef2a51a1ce49d14af\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2786},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"}},\"path\":\"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"53eb7709cda173b8c923b4bef2a51a1ce49d14af\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":16071},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"}},\"path\":\"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"53eb7709cda173b8c923b4bef2a51a1ce49d14af\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":7465}],\"page\":1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0332291126251", - "Connection": "Keep-Alive", - "X-Request-Count": "2075", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2565" - }, - "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n \n\t \n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-02-02---A-Brief-History-of-Typography.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0361340045929", - "Connection": "Keep-Alive", - "X-Request-Count": "2043", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2786" - }, - "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n\n\t\t\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.
\n\t\t\n\t\n\t \n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.047847032547", - "Connection": "Keep-Alive", - "X-Request-Count": "4271", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1707" - }, - "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-02-02---A-Brief-History-of-Typography.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.111634016037", - "Connection": "Keep-Alive", - "X-Request-Count": "3771", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.111840009689", - "Connection": "Keep-Alive", - "X-Request-Count": "3510", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.161051034927", - "Connection": "Keep-Alive", - "X-Request-Count": "1110", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-18-08---The-Birth-of-Movable-Type.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0483119487762", - "Connection": "Keep-Alive", - "X-Request-Count": "4552", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "16071" - }, - "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western worldâs first major printed books, the âFortyâTwoâLineâ Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western worldâs first major printed books, the âFortyâTwoâLineâ Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 â 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n\n\t \n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information â including revolutionary ideas â transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a âsecretâ. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439â1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him âlike a ray of lightâ.\n\n\n\t
Johannes Gutenberg \n\n\t \n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fustâs son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n\n\t
Early wooden printing press as depicted in 1568. \n\n\t \n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454â55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the FustâSchöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the GutenbergâFust shop might have employed as many as 25 craftsmen.\n\n\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of âmovable typeâ.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n\n\t\t\nAll that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to followâyour grace would be able to read it without effort, and indeed without glasses.
\n\t\t\n\t\n\t \n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in âcuneiformâ style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that âthe decisive factor for the birth of typographyâ, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0456619262695", - "Connection": "Keep-Alive", - "X-Request-Count": "2627", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "7465" - }, - "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didnât mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other â the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n\n\n*The 42âLine Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But itâs the third transition that stripped it naked. Typefaces are faceless these days. Theyâre just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the âright oneâ is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\nâ Massimo Vignelli\n\nTypography is not about typefaces. Itâs not about what looks best, itâs about what feels right. What communicates the message best. Typography, in its essence, is about the message. âTypographical design should perform optically what the speaker creates through voice and gesture of his thoughts.â, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because itâs a safe option. Itâs always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still donât spot it in the street.\n\n\n\t\t\nIt is a press, certainly, but a press from which shall flow in inexhaustible streams⦠Through it, god will spread his word.
\n\t\t\n\t\n\t \n\nTypefaces donât look handmade these days. And thatâs all right. They donât have to. Industrialism took that away from them and weâre fine with it. Weâve traded that part of humanity for a process that produces more books that are easier to read. That canât be bad. And it isnât.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> â Eric Gill\n\nWeâve come close to âperfectionâ in the last five centuries. The letters are crisp and without rough edges. We print our compositions with highâprecision printers on a high quality, machine made paper.\n\n\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we donât care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. Thereâs no meaning in our work. Type sizes, leading, margins⦠Itâs all just a few clicks or lines of code. The message isnât important anymore. Thereâs no more âwhyâ behind the âwhatâ.\n\n## Chasing perfection\n\nHuman beings arenât perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2017-18-08---The-Birth-of-Movable-Type.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.12562084198", - "Connection": "Keep-Alive", - "X-Request-Count": "2589", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nKnowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0989770889282", - "Connection": "Keep-Alive", - "X-Request-Count": "2616", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name ~ \"cms/\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0480799674988", - "Connection": "Keep-Alive", - "X-Request-Count": "2621", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0473380088806", - "Connection": "Keep-Alive", - "X-Request-Count": "840", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0600399971008", - "Connection": "Keep-Alive", - "X-Request-Count": "2121", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3039" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:50:53+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0357699394226", - "Connection": "Keep-Alive", - "X-Request-Count": "2922", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "105" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: content/posts/1970-01-01-first-title.md\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0410737991333", - "Connection": "Keep-Alive", - "X-Request-Count": "3516", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3039" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/statuses\"}}, \"author\": {\"raw\": \"ownerkah \", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:50:53+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/53eb7709cda173b8c923b4bef2a51a1ce49d14af/.gitattributes", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0366640090942", - "Connection": "Keep-Alive", - "X-Request-Count": "1935", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "220" - }, - "response": "/.github export-ignore\n/.gitattributes export-ignore\n/.editorconfig export-ignore\n/.travis.yml export-ignore\n**/*.js.snap export-ignore\n*.png filter=lfs diff=lfs merge=lfs -text\n*.jpg filter=lfs diff=lfs merge=lfs -text\n", - "status": 200 - }, - { - "body": "{\"operation\":\"upload\",\"transfers\":[\"basic\"],\"objects\":[{\"size\":3470,\"oid\":\"b1d40c19b912d2130d1bed8ff1a62a55c7d932978502e1d8559eb77951c5e8d3\"}]}", - "method": "POST", - "url": "/owner/repo/info/lfs/objects/batch", - "headers": { - "bbr1private": "0", - "bbr1wikiprivate": "0", - "Server": "nginx", - "Vary": "Authorization", - "bbr1repouuid": "97c5226e-9ffb-42c4-948d-3d785a9d0c46", - "Cache-Control": "no-cache", - "Content-Type": "application/vnd.git-lfs+json", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "X-Usage-Output-Ops": "0", - "bbr1reposlug": "repo", - "bbr1hasadmin": "1", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "bbr1scm": "git", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Usage-User-Time": "0.036636", - "X-Usage-System-Time": "0.000458", - "bbuserid": "6965054", - "bbauthhash": "", - "X-Served-By": "app-135", - "X-Consumer-Client-Id": "ATfdeqkMFdgQA3S8Tr", - "bbr1ownerid": "6965054", - "bbr1hasread": "1", - "bbr1issuesprivate": "0", - "bbr1haswrite": "1", - "bbr1size": "8617168", - "X-Usage-Throttled": "True", - "Access-Control-Allow-Origin": "*", - "X-View-Name": "bitbucket.apps.lfs.clientapi.batch.ObjectsBatchHandler", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0560607910156", - "Connection": "Keep-Alive", - "bbusername": "owner", - "X-Token-Id": "47401645", - "X-Usage-Input-Ops": "0", - "X-Request-Count": "1289", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "bbr1owner": "owner", - "Content-Length": "104", - "bbr1id": "64027664" - }, - "response": "{\"objects\": [{\"oid\": \"b1d40c19b912d2130d1bed8ff1a62a55c7d932978502e1d8559eb77951c5e8d3\", \"size\": 3470}]}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0554020404816", - "Connection": "Keep-Alive", - "X-Request-Count": "1021", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3039" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af/statuses\"}}, \"author\": {\"raw\": \"ownerkah \", \"type\": \"author\"}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T09:50:53+00:00\", \"message\": \"chore: track images files under LFS\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "body": "------WebKitFormBoundaryh4sBeJTkB1hrnBWn\r\nContent-Disposition: form-data; name=\"content/posts/1970-01-01-first-title.md\"; filename=\"1970-01-01-first-title.md\"\r\nContent-Type: application/octet-stream\r\n\r\n---\ntemplate: post\ntitle: first title\nimage: /media/netlify.png\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\r\n------WebKitFormBoundaryh4sBeJTkB1hrnBWn\r\nContent-Disposition: form-data; name=\"static/media/netlify.png\"; filename=\"netlify.png\"\r\nContent-Type: text/plain\r\n\r\nversion https://git-lfs.github.com/spec/v1\noid sha256:b1d40c19b912d2130d1bed8ff1a62a55c7d932978502e1d8559eb77951c5e8d3\nsize 3470\n\r\n------WebKitFormBoundaryh4sBeJTkB1hrnBWn\r\nContent-Disposition: form-data; name=\"message\"\r\n\r\nCreate Post â1970-01-01-first-titleâ\r\n------WebKitFormBoundaryh4sBeJTkB1hrnBWn\r\nContent-Disposition: form-data; name=\"branch\"\r\n\r\ncms/posts/1970-01-01-first-title\r\n------WebKitFormBoundaryh4sBeJTkB1hrnBWn\r\nContent-Disposition: form-data; name=\"parents\"\r\n\r\n53eb7709cda173b8c923b4bef2a51a1ce49d14af\r\n------WebKitFormBoundaryh4sBeJTkB1hrnBWn--\r\n", - "method": "POST", - "url": "/2.0/repositories/owner/repo/src", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "text/html; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/commit/3113239426d281c117fff238d3e3d4cdcd52a245", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.45046210289", - "Connection": "Keep-Alive", - "X-Request-Count": "1435", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "0" - }, - "response": null, - "status": 201 - }, - { - "body": "{\"title\":\"Create Post “1970-01-01-first-title”\",\"source\":{\"branch\":{\"name\":\"cms/posts/1970-01-01-first-title\"}},\"destination\":{\"branch\":{\"name\":\"master\"}},\"description\":\"Automatically generated by Decap CMS\",\"close_source_branch\":true}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.262046813965", - "Connection": "Keep-Alive", - "X-Request-Count": "3936", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "5236" - }, - "response": "{\"rendered\": {\"description\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \" Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"title\": {\"raw\": \"Create Post “1970-01-01-first-title”\", \"markup\": \"markdown\", \"html\": \"Create Post “1970-01-01-first-title”
\", \"type\": \"rendered\"}}, \"type\": \"pullrequest\", \"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:3113239426d2%0D53eb7709cda1?from_pullrequest_id=5\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:3113239426d2%0D53eb7709cda1?from_pullrequest_id=5\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"reviewers\": [], \"id\": 5, \"destination\": {\"commit\": {\"hash\": \"53eb7709cda1\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda1\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:55:44.933925+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"3113239426d2\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/3113239426d2\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/3113239426d2\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 0, \"state\": \"OPEN\", \"task_count\": 0, \"participants\": [], \"reason\": \"\", \"updated_on\": \"2020-04-12T09:55:44.960400+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}", - "status": 201 - }, - { - "body": "{\"content\":{\"raw\":\"decap-cms/draft\"}}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/5/comments", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments/144752752", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0878441333771", - "Connection": "Keep-Alive", - "X-Request-Count": "4876", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1547" - }, - "response": "{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments/144752752\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5/_/diff#comment-144752752\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 5, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:55:45.728734+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:55:45.730932+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752752}", - "status": 201 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0923631191254", - "Connection": "Keep-Alive", - "X-Request-Count": "2607", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4908" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:3113239426d2%0D53eb7709cda1?from_pullrequest_id=5\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:3113239426d2%0D53eb7709cda1?from_pullrequest_id=5\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 5, \"destination\": {\"commit\": {\"hash\": \"53eb7709cda1\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda1\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:55:44.933925+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"3113239426d2\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/3113239426d2\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/3113239426d2\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:55:45.730932+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/5/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.10053396225", - "Connection": "Keep-Alive", - "X-Request-Count": "854", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1599" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments/144752752\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5/_/diff#comment-144752752\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 5, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:55:45.728734+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:55:45.730932+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752752}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/diff/cms/posts/1970-01-01-first-title..master?binary=false", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "must-revalidate, max-age=0", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.12814617157", - "Connection": "Keep-Alive", - "X-Request-Count": "3226", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "738" - }, - "response": "diff --git a/content/posts/1970-01-01-first-title.md b/content/posts/1970-01-01-first-title.md\nnew file mode 100644\nindex 0000000..5712f24\n--- /dev/null\n+++ b/content/posts/1970-01-01-first-title.md\n@@ -0,0 +1,11 @@\n+---\n+template: post\n+title: first title\n+image: /media/netlify.png\n+date: 1970-01-01T00:00:00.000Z\n+description: first description\n+category: first category\n+tags:\n+ - tag1\n+---\n+first body\n\\ No newline at end of file\ndiff --git a/static/media/netlify.png b/static/media/netlify.png\nnew file mode 100644\nindex 0000000..a137fb3\n--- /dev/null\n+++ b/static/media/netlify.png\n@@ -0,0 +1,3 @@\n+version https://git-lfs.github.com/spec/v1\n+oid sha256:b1d40c19b912d2130d1bed8ff1a62a55c7d932978502e1d8559eb77951c5e8d3\n+size 3470\n", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/5/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0798759460449", - "Connection": "Keep-Alive", - "X-Request-Count": "2062", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1599" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments/144752752\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5/_/diff#comment-144752752\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 5, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:55:45.728734+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:55:45.730932+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752752}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0582768917084", - "Connection": "Keep-Alive", - "X-Request-Count": "1698", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3710" - }, - "response": "{\"name\": \"cms/posts/1970-01-01-first-title\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/cms/posts/1970-01-01-first-title\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/cms/posts/1970-01-01-first-title\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"3113239426d281c117fff238d3e3d4cdcd52a245\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/3113239426d281c117fff238d3e3d4cdcd52a245\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/3113239426d281c117fff238d3e3d4cdcd52a245/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/3113239426d281c117fff238d3e3d4cdcd52a245\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/3113239426d281c117fff238d3e3d4cdcd52a245\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/3113239426d281c117fff238d3e3d4cdcd52a245\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/3113239426d281c117fff238d3e3d4cdcd52a245/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/3113239426d281c117fff238d3e3d4cdcd52a245/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}}], \"date\": \"2020-04-12T09:55:43+00:00\", \"message\": \"Create Post “1970-01-01-first-title”\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/3113239426d281c117fff238d3e3d4cdcd52a245/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.047602891922", - "Connection": "Keep-Alive", - "X-Request-Count": "1283", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "180" - }, - "response": "---\ntemplate: post\ntitle: first title\nimage: /media/netlify.png\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0656778812408", - "Connection": "Keep-Alive", - "X-Request-Count": "2708", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3710" - }, - "response": "{\"name\": \"cms/posts/1970-01-01-first-title\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/cms/posts/1970-01-01-first-title\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/cms/posts/1970-01-01-first-title\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"3113239426d281c117fff238d3e3d4cdcd52a245\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/3113239426d281c117fff238d3e3d4cdcd52a245\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/3113239426d281c117fff238d3e3d4cdcd52a245/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/3113239426d281c117fff238d3e3d4cdcd52a245\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/3113239426d281c117fff238d3e3d4cdcd52a245\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/3113239426d281c117fff238d3e3d4cdcd52a245\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/3113239426d281c117fff238d3e3d4cdcd52a245/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/3113239426d281c117fff238d3e3d4cdcd52a245/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}}], \"date\": \"2020-04-12T09:55:43+00:00\", \"message\": \"Create Post “1970-01-01-first-title”\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/3113239426d281c117fff238d3e3d4cdcd52a245/static/media/netlify.png", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "text/html; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.media.atlassian.com/file/b851259d-0ea4-4c32-808d-5d73b564ac66/binarytoken=fakeTokenclient=fakeClient&dl=1&name=netlify.png", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0516560077667", - "Connection": "Keep-Alive", - "X-Request-Count": "1141", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "0" - }, - "response": null, - "status": 302 - }, - { - "method": "GET", - "url": "/file/b851259d-0ea4-4c32-808d-5d73b564ac66/binarytoken=fakeTokenclient=fakeClient&dl=1&name=netlify.png", - "headers": { - "Content-Type": "image/png", - "Content-Length": "3470", - "Server": "globaledge-envoy", - "X-B3-Traceid": "4a4fb1841404b8b4", - "X-B3-Spanid": "468c28e0ef64c67c", - "X-B3-Parentspanid": "11e9b8cf2d46ad33", - "X-B3-Sampled": "1", - "X-Dns-Prefetch-Control": "off", - "X-Frame-Options": "SAMEORIGIN", - "X-Download-Options": "noopen", - "Access-Control-Allow-Origin": "*", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Range, X-Media-Region", - "X-Media-Region": "us-west-1", - "Content-Security-Policy": "script-src 'none'", - "Timing-Allow-Origin": "*", - "Accept-Ranges": "bytes", - "Content-Disposition": "attachment; filename=\"netlify.png\"", - "Cache-Control": "private", - "Atl-Traceid": "4a4fb1841404b8b4", - "X-Envoy-Upstream-Service-Time": "337", - "Expect-Ct": "report-uri=\"https://web-security-reports.services.atlassian.com/expect-ct-report/dt-api-filestore\", max-age=86400", - "X-Logging-Id": "V1xZRhzmw", - "Strict-Transport-Security": "max-age=63072000; preload", - "X-Content-Type-Options": "nosniff", - "X-Xss-Protection": "1; mode=block" - }, - "response": { - "encoding": "base64", - "content": "iVBORw0KGgoAAAANSUhEUgAAAJcAAACXCAMAAAAvQTlLAAAAwFBMVEX///85rbswtrpAp71DpL03sLs8q7xGob4tubkzs7o+qLwqvLknv7gkwrgpvbhIn75Mm7/x+vrs9fhktcfn9/bg8PMtp7lSr8IWw7U7yL3Y7vAAq7JSzMM+w75MwMGj2dxmv8iLx9O73ORcrMRorMeJ2tJr1MlTx8N8z8+45uWs4OBQu8HH5ulTuMMXqbaW0Ndxvsuq1t4jnrd6ss2TwNUwj7ii4tzP8Ox00syR19ZkxseByNCezdnP5Ox2tsyDv9FhQXEFAAAMiUlEQVR4nO2ci1biyBaGDTcBUaxAEjuoQLQHEQhJ2j7TCLTv/1anau8kdU3wwsW1zvlnVg9UKlVf/r1rVyFjn539X6cSOTWASf2f/9z+87N/agxF5OcN6uf3Mu32JtPtqVEE9X/ccP34NrEktzeibr9JKCW3vo9j1K1L+g/X5bdwrP/jkkqgYjq9Y/3bSxSz7PImfXN5e2Kw/qWoG+H1ScFyt3T9PCXWj0KsU/pV4tblf06HRX5cdoqw/kClOIlnZNKhKovi/O4EYKQDMlsGUezfdTpHL7D9SSeXhoX1/olemhzZMXLXESVRdS7/ZV3+hSt3R3VMdEsTli5yi++OmWOKW4omYNEqfXd1PMdK3ep0IIq+wHkkx8gVVeeqCOsJ+qToV6CjONaf4GQFYHdiFNOex3CM3F1dlIFNgV3Curg4fI71JxdUV1dFaH+g16tAdcVuOLRj5O4CpZPBqyuY/zlnSrEO7Ri6JYMBW4aHUdSoDu3Y08WVESzDm0CvPzkU731gx/zVnTCVxgaeTDWvmJrN1QG5aIY9TwrJnqHDHTNKhrpoUq75Qbmopk8XYoRyrFe4+qQ6hW41m4eJI3ld8cx1VtrMVxcdn12am6GoDoJl39ORX+f5M5PpHxUM8ofcFWHdA7WzXyxynw7+zMn8V2n69BhhhqKCffNpv9Hs3/PxVzx/+8MJi9pk9Tx9XmEUC7GasCgmzfs91jEiYLFwTvmV6eSCW0g7FlGly5FZvjfH+rNKpSLN0RzyPBGnWWVJ35SZmJifdpOONNuTY+S+UtHA7p98wwMwIBMTu4E9yZxxVfbjWB+xNLLm/VR78FcTURp8BvOMA+0jx0iOZSBbKU8+L+aC5bhKx/m6Y30RS+VqqsWSFHNBdXvKBvqqY5JbpjRT+j8VcrE1TF7zYb7mWL/V0rgoGYd71e5Y3etM7D6W9n0+TKvyBcfIfUsHkz0zPMuzTFYBrAHzxx9kVFSfd6w/a6FK0AzV4uzsXx7O/AbWHgw4FgX7pGMkwzKCpWRP5nudIUY77w0Bz5YjDjqofMqx/n1LkIkM2KbCLVPhwEHfNIWeS9b0yqFardnwc1iz1m4uKmFF+pTzdSgeOAZ5N8DnVIPZ/JPpZbcUVcxs+enCTot5RdihyHAmdLNTrMFs/YVj2FwFM3Jhfk3n09VMaBQPHGgaY/UHmFbCpu8sP27bcvAOMjwM6u3C3P5qNkTGUWvQGvHjG5mPBuFHThc23EtmGpfGBoc93xhgIZz51EMpxqNBnWr2bsf69boN8xm5RDKM4szIVRnM9ANHLn9No1FHvdMxsqiHa3i1DAvIMjYYcWjGYpqtzAk+X8MgKdfoXY7ZrGsIATobFXIBG6SNOYogluUj7eOsM2wNOBSbDMOz0y0QPINfL+OCo97ZazEUaCC74a+BSsCiWux0zF6Eqbnwdhi2CtEGEKNhixFkxQ1etipSN+W5hzOVijq22OFYjlWvx9AwqhdxDWBr0cqv0mmw0uJIy0NYV1UOZi8s3hWWtAMvTVPi+i7PwNnQPJ2zXihcVhmYPbKsek42grY4NIMN8HOsXnt5j9m8eC47ngmm0VmtUWFnYoHyoEOgWCRNZHDRMZdekGkPJGthu/ZH9RQN57UKkp8G0ZLJhEgCmgCHUVwX2DVoCfvQfJ1tgs4oDEfC8cZfWiHHKnCM5FgZmIXLdxpysIysPIojcd+e0U6sN5kv02HWwiE3GFlhNmvDVC7sRaPRsGS0NJJraflgkGBOUxTpChQ2xiWjas2YEc/5KNQ04TQ5X4cpWaOhJ7/dsGQuBINF3lcWT6u1gA1obcCaiefCpxarVC1cQUt5kCHfFe3lArEogwJmL9xGwwCGzs6VeoO4vrZ70k2HR2I+atXT+gm2r6UhaGKteWWzgwjnd5VQNrCZEUtk6QYuRxKfn56mlL1AWIH9ofgYQ+heV2TVFwGncCJgcBsiVpRhaZ6FATDIkYT5l5yV8oUzaQXWxQcBe526LFayrHCx5HfZsee6DTfiWGMRSw2mrUYyjDGKQktdPIXGai0P2RC+pbRm5SHaCrGnprnj3EIZSyHTIrmABh6W0FryFegvF9rmF7ILgdQsTuD2Yk62HbtJZuFY4xLB0B4hPQAizqdZxGKuq0z5g/CwW5Ig2xtjMZxxnl06mEjmiHFDTDt7JywqEhjOCfVs7YxMWFCcgMyN9A+U9nzjefSSSpfdjefc9IExiumiF7N2aWLiT2LpVlniZK7rxYZ9iGyDTdTW2DCSG4xkyJRFkRZtYRxlBcpcYGmoUVkNRTSc5u+QbCceq8bBCLiBL4P5BpONrUCfF3a6AgupaEFgdzthOVNmWi8wkkFU43FPYGOjKFV4bQkB9JclUBB5ZmvwHqw2lettisioAzTlIoaPA1i8poBx8goso4IDH+u33AkFVFSJMFccm75Q8mnKsajSgczu2rFerJBGTHJYjuOdVBmXUO/PSLvq9caBoy1VwlLOasRqO9g25gdJ+Q9Z7GYSlULlZrXbnvzkvSqLrRstA18/nBmOa2QehTqCSS78iGlRwiRi9dSDjoftLiWOqHPGuHGqeLEbKONiY/mNYq62IE8/GPaEy7TIRbHJuSyE76aiXOyGuWFH0bmqqlvoWFUggypG4QrYxg33PUywz7D+cQGX6BXNceMHD8kxhtZglcL11qbexI+XERYSM1EmPE9FZi55QpNbMFdbAWOuNZaFuUZsP1jT3YN2Kk5qF9ayEUrBahemDa5KMc+iwm2B09H9gTlXxAUj6FcVpqoxt3IwryqSjY3fZhid28ZQgtX5aQt8T6u2tzUsc24JjmVgvQ3vqdwT9JZzw4Kwg+XYk9jc9MkCtwyKUpW6BWNTxyha0gt4xyBS7tqwyRfRxvDdgO0EsOsjSHZs8d1iKEa1wy0YuFdNvA0PoBPTWhspAPhpk80exVt99zpzAlisfJS0fulQiLXLLQQTznvOG+wDap5t8+dnbL1oY0hE298K79hnCCMS6B1Y4siBl8D9eKQPfMfxA7ROSRhGNw62JbuX4xZT9T70nQfZZGsA7xu7bc9rZx/vetrKZykVjeMiNtc1Q70ntwSo7VuS3pZGcZ6kI2JByvZ5Vh4V57xx4OtTke3mrdd2E5XqQ1hnOVW1iudHwjcpF+yL9cDkHdw2TbnAuFg3vXaSCFTJh7DSciFEf5zwefFEGRVyZXQFIaWV5M2rpnQfyy0Klj8QhM1no7SzkgtNjrcDrF3yAYLurGNqXPLBlXjGAodcGEVuH2NLYLTtLi6hvGwDx0Cw3XziS1vbqzEMCEYsJir1DSMpxtYoLwPbVpOq97bZdQx+n8hDrVrDkCVVWQl+Ase1UC2g4v3G6f00cN5ma3LuQ7K9pAcvelVV+LOgbYL2wb9t/K8sMDaQFmBS7VHnvsRGcN/a1DSudB1tVCNVQXa+yW00CrUkqY3LZt4Fxv6w6TgaWRbJcqwkVrlqmT6+ElVFfCxxSvxZyg6urQBfE/Xw5f8DLBBGqwpoGMm4NJJQUByViWF92a2zB3XMWhXwkje4HJVysR5bbYA9uEXTSwcD52oQJFpD9FWB5LQX/LAhSA7g1hnUMbNwy02n1UJFhYtjo3Ltwy0ms2N0WozkWwE27QBVuXcQt5iKHMN5iVfIBZFWnNyXW0xFjj2IkTQIdgX56v7cYipy7C9cHRdgAYMjce3TLSb74dw0cxrJAi6gFt08369bMLcZDEPlm7lwOYpYB/hdCuoYU03Bw0huaibh7kh52G1U+3eLiSAYTlEDvvOsRhl2hXQ5ZncxrAP9BpHNp8hFIfEohoFK4wW2np/b0k2HcYuJ1HSwzIZNjZNmrwA4f3vA37cyOXZ+/gLX/urAItfh3CoEq+EGrrXDNhUfA6vIMSIQcMGKeDsKlrS+dkUSbESsI/yGrdEx/FmK3NZ1Mq7Du8VEDFw13MCltkc7Yz3Sb3Dbj10NDI9iL+KFvwwn6CLfUUS6GlgXI/mgor50j5FbmahjlAzokLDb7eLPUnhbF5fj8dwCsK6mdAPnDbAc/x4VCx1ThBs4b2fLkRz9L8YwOIYbePbu+thEGZjm2CO055E8EZfBMYzkLzHfTgKmOZZu4BDGkp+uHhwszSQeSfwyhDVcb3fdfUiwx2sBjf6BG/jLdff6uHVLA6Mw8M81haJ/oEs2fXFSLFqgHq8FdVOe7ePJ/8Y0u3stCSN5YrcAQXLs+vfub+qPJNWxb+AVSnHs5dQ8uezv6RfVr99Zev06NYqsFwT7/X2CmMp5+fXr18ue/3qJ/ejktfR/WP8FOoK2QLx2JrUAAAAASUVORK5CYII=" - }, - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0867700576782", - "Connection": "Keep-Alive", - "X-Request-Count": "367", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4908" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:3113239426d2%0D53eb7709cda1?from_pullrequest_id=5\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:3113239426d2%0D53eb7709cda1?from_pullrequest_id=5\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 5, \"destination\": {\"commit\": {\"hash\": \"53eb7709cda1\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda1\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:55:44.933925+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \" Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"3113239426d2\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/3113239426d2\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/3113239426d2\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:55:45.730932+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0794830322266", - "Connection": "Keep-Alive", - "X-Request-Count": "1278", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4908" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:3113239426d2%0D53eb7709cda1?from_pullrequest_id=5\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:3113239426d2%0D53eb7709cda1?from_pullrequest_id=5\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 5, \"destination\": {\"commit\": {\"hash\": \"53eb7709cda1\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda1\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:55:44.933925+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"3113239426d2\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/3113239426d2\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/3113239426d2\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:55:45.730932+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/5/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0865399837494", - "Connection": "Keep-Alive", - "X-Request-Count": "4188", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1599" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments/144752752\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5/_/diff#comment-144752752\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 5, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:55:45.728734+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:55:45.730932+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752752}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/5/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0393679141998", - "Connection": "Keep-Alive", - "X-Request-Count": "3008", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/5/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0824439525604", - "Connection": "Keep-Alive", - "X-Request-Count": "4655", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1599" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments/144752752\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5/_/diff#comment-144752752\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 5, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:55:45.728734+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:55:45.730932+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752752}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "body": "{\"content\":{\"raw\":\"decap-cms/pending_publish\"}}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/5/comments", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments/144752757", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0858240127563", - "Connection": "Keep-Alive", - "X-Request-Count": "886", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1567" - }, - "response": "{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments/144752757\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5/_/diff#comment-144752757\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 5, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_publish\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_publish
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:55:55.578759+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:55:55.581320+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752757}", - "status": 201 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.111418962479", - "Connection": "Keep-Alive", - "X-Request-Count": "3467", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4908" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:3113239426d2%0D53eb7709cda1?from_pullrequest_id=5\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:3113239426d2%0D53eb7709cda1?from_pullrequest_id=5\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 5, \"destination\": {\"commit\": {\"hash\": \"53eb7709cda1\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda1\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:55:44.933925+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"3113239426d2\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/3113239426d2\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/3113239426d2\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 2, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:55:55.581320+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.205958843231", - "Connection": "Keep-Alive", - "X-Request-Count": "1882", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4908" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:3113239426d2%0D53eb7709cda1?from_pullrequest_id=5\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:3113239426d2%0D53eb7709cda1?from_pullrequest_id=5\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 5, \"destination\": {\"commit\": {\"hash\": \"53eb7709cda1\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda1\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T09:55:44.933925+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"3113239426d2\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/3113239426d2\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/3113239426d2\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 2, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T09:55:55.581320+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/5/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.170164823532", - "Connection": "Keep-Alive", - "X-Request-Count": "1556", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3168" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments/144752752\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5/_/diff#comment-144752752\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 5, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:55:45.728734+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:55:45.730932+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752752}, {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments/144752757\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5/_/diff#comment-144752757\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 5, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_publish\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_publish
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:55:55.578759+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:55:55.581320+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752757}], \"page\": 1, \"size\": 2}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/5/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0676410198212", - "Connection": "Keep-Alive", - "X-Request-Count": "97", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/5/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.125701904297", - "Connection": "Keep-Alive", - "X-Request-Count": "2447", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3168" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments/144752752\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5/_/diff#comment-144752752\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 5, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:55:45.728734+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:55:45.730932+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752752}, {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments/144752757\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5/_/diff#comment-144752757\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 5, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_publish\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_publish
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T09:55:55.578759+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:55:55.581320+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144752757}], \"page\": 1, \"size\": 2}", - "status": 200 - }, - { - "body": "{\"message\":\"Automatically generated. Merged on Decap CMS.\",\"close_source_branch\":true,\"merge_strategy\":\"merge_commit\"}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/5/merge", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "1.27535891533", - "Connection": "Keep-Alive", - "X-Request-Count": "3135", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "7883" - }, - "response": "{\"rendered\": {\"description\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"title\": {\"raw\": \"Create Post “1970-01-01-first-title”\", \"markup\": \"markdown\", \"html\": \"Create Post “1970-01-01-first-title”
\", \"type\": \"rendered\"}}, \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:816ddc6f59e4%0D53eb7709cda1?from_pullrequest_id=5\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/5\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:816ddc6f59e4%0D53eb7709cda1?from_pullrequest_id=5\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/5/statuses\"}}, \"close_source_branch\": true, \"reviewers\": [], \"created_on\": \"2020-04-12T09:55:44.933925+00:00\", \"id\": 5, \"closed_on\": \"2020-04-12T09:56:04.032353+00:00\", \"title\": \"Create Post “1970-01-01-first-title”\", \"destination\": {\"commit\": {\"hash\": \"53eb7709cda1\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda1\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"master\"}}, \"comment_count\": 2, \"source\": {\"commit\": {\"hash\": \"3113239426d2\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/3113239426d2\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/3113239426d2\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"state\": \"MERGED\", \"type\": \"pullrequest\", \"description\": \"Automatically generated by Decap CMS\", \"reason\": \"\", \"task_count\": 0, \"merge_commit\": {\"hash\": \"816ddc6f59e42c5d085ecee048f1d7e8d4386c4e\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/816ddc6f59e42c5d085ecee048f1d7e8d4386c4e\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/816ddc6f59e42c5d085ecee048f1d7e8d4386c4e\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"summary\": {\"raw\": \"Automatically generated. Merged on Decap CMS.\\n\", \"markup\": \"markdown\", \"html\": \" Automatically generated. Merged on Decap CMS.
\", \"type\": \"rendered\"}, \"date\": \"2020-04-12T09:56:02+00:00\", \"message\": \"Automatically generated. Merged on Decap CMS.\\n\", \"type\": \"commit\"}, \"closed_by\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"participants\": [{\"role\": \"PARTICIPANT\", \"participated_on\": \"2020-04-12T09:55:55.581320+00:00\", \"type\": \"participant\", \"approved\": false, \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}], \"updated_on\": \"2020-04-12T09:56:04.032369+00:00\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0764667987823", - "Connection": "Keep-Alive", - "X-Request-Count": "4101", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3850" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"816ddc6f59e42c5d085ecee048f1d7e8d4386c4e\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/816ddc6f59e42c5d085ecee048f1d7e8d4386c4e\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/816ddc6f59e42c5d085ecee048f1d7e8d4386c4e/comments\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/816ddc6f59e42c5d085ecee048f1d7e8d4386c4e\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/816ddc6f59e42c5d085ecee048f1d7e8d4386c4e\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/816ddc6f59e42c5d085ecee048f1d7e8d4386c4e/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/816ddc6f59e42c5d085ecee048f1d7e8d4386c4e/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}}, {\"hash\": \"3113239426d281c117fff238d3e3d4cdcd52a245\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/3113239426d281c117fff238d3e3d4cdcd52a245\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/3113239426d281c117fff238d3e3d4cdcd52a245\"}}}], \"date\": \"2020-04-12T09:56:02+00:00\", \"message\": \"Automatically generated. Merged on Decap CMS.\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/816ddc6f59e42c5d085ecee048f1d7e8d4386c4e/static/media?max_depth=1&pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0544400215149", - "Connection": "Keep-Alive", - "X-Request-Count": "4556", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1168" - }, - "response": "{\"pagelen\":100,\"values\":[{\"mimetype\":\"image/png\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/816ddc6f59e42c5d085ecee048f1d7e8d4386c4e/static/media/netlify.png\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/816ddc6f59e42c5d085ecee048f1d7e8d4386c4e/static/media/netlify.png?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/816ddc6f59e42c5d085ecee048f1d7e8d4386c4e/static/media/netlify.png\"}},\"path\":\"static/media/netlify.png\",\"commit\":{\"type\":\"commit\",\"hash\":\"816ddc6f59e42c5d085ecee048f1d7e8d4386c4e\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/816ddc6f59e42c5d085ecee048f1d7e8d4386c4e\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/816ddc6f59e42c5d085ecee048f1d7e8d4386c4e\"}}},\"attributes\":[\"binary\",\"lfs\"],\"type\":\"commit_file\",\"size\":3470}],\"page\":1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.076493024826", - "Connection": "Keep-Alive", - "X-Request-Count": "628", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3850" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"816ddc6f59e42c5d085ecee048f1d7e8d4386c4e\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B97c5226e-9ffb-42c4-948d-3d785a9d0c46%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{97c5226e-9ffb-42c4-948d-3d785a9d0c46}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/816ddc6f59e42c5d085ecee048f1d7e8d4386c4e\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/816ddc6f59e42c5d085ecee048f1d7e8d4386c4e/comments\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/816ddc6f59e42c5d085ecee048f1d7e8d4386c4e\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/816ddc6f59e42c5d085ecee048f1d7e8d4386c4e\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/816ddc6f59e42c5d085ecee048f1d7e8d4386c4e/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/816ddc6f59e42c5d085ecee048f1d7e8d4386c4e/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"53eb7709cda173b8c923b4bef2a51a1ce49d14af\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/53eb7709cda173b8c923b4bef2a51a1ce49d14af\"}}}, {\"hash\": \"3113239426d281c117fff238d3e3d4cdcd52a245\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/3113239426d281c117fff238d3e3d4cdcd52a245\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/3113239426d281c117fff238d3e3d4cdcd52a245\"}}}], \"date\": \"2020-04-12T09:56:02+00:00\", \"message\": \"Automatically generated. Merged on Decap CMS.\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/816ddc6f59e42c5d085ecee048f1d7e8d4386c4e/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0475261211395", - "Connection": "Keep-Alive", - "X-Request-Count": "3925", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "180" - }, - "response": "---\ntemplate: post\ntitle: first title\nimage: /media/netlify.png\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0519030094147", - "Connection": "Keep-Alive", - "X-Request-Count": "4433", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "body": "{\"ref\":{\"name\":\"refs/heads/master\"}}", - "method": "POST", - "url": "/owner/repo.git/info/lfs/locks/verify", - "headers": { - "Server": "nginx", - "Cache-Control": "no-cache", - "Content-Type": "text/html", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "X-Usage-Output-Ops": "0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Usage-User-Time": "0.020318", - "X-Usage-System-Time": "0.002069", - "bbuserid": "6965054", - "bbauthhash": "85825d9e95e23cd03a5fd66443596e6bee282889", - "X-Served-By": "app-151", - "X-Consumer-Client-Id": "ATfdeqkMFdgQA3S8Tr", - "X-Usage-Throttled": "True", - "X-Static-Version": "e1ce49ad4aa3", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0357182025909", - "Connection": "Keep-Alive", - "X-Token-Id": "47401645", - "bbusername": "owner", - "X-Usage-Input-Ops": "0", - "X-Version": "e1ce49ad4aa3", - "X-Request-Count": "1758", - "X-Frame-Options": "SAMEORIGIN", - "content-length": "77" - }, - "response": " Not Found
The requested resource was not found on this server.
", - "status": 404 - } -] diff --git a/source/admin/cypress/fixtures/BitBucket Backend Media Library - REST API__can delete image from global media library.json b/source/admin/cypress/fixtures/BitBucket Backend Media Library - REST API__can delete image from global media library.json deleted file mode 100644 index 147cff0..0000000 --- a/source/admin/cypress/fixtures/BitBucket Backend Media Library - REST API__can delete image from global media library.json +++ /dev/null @@ -1,559 +0,0 @@ -[ - { - "method": "GET", - "url": "/2.0/repositories/owner/repo", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0439109802246", - "Connection": "Keep-Alive", - "X-Request-Count": "3554", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2995" - }, - "response": "{\"scm\": \"git\", \"website\": null, \"has_wiki\": false, \"name\": \"repo\", \"links\": {\"watchers\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/watchers\"}, \"branches\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches\"}, \"tags\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/tags\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits\"}, \"clone\": [{\"href\": \"https://owner@bitbucket.org/owner/repo.git\", \"name\": \"https\"}, {\"href\": \"git@bitbucket.org:owner/repo.git\", \"name\": \"ssh\"}], \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"source\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/src\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B4c4415b4-a438-43c3-b94c-6405498d73fc%7D?ts=default\"}, \"hooks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/hooks\"}, \"forks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/forks\"}, \"downloads\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/downloads\"}, \"pullrequests\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests\"}}, \"fork_policy\": \"allow_forks\", \"uuid\": \"{4c4415b4-a438-43c3-b94c-6405498d73fc}\", \"language\": \"\", \"created_on\": \"2020-04-12T09:56:49.628042+00:00\", \"mainbranch\": {\"type\": \"branch\", \"name\": \"master\"}, \"full_name\": \"owner/repo\", \"has_issues\": false, \"owner\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:57:29.368026+00:00\", \"size\": 4282777, \"type\": \"repository\", \"slug\": \"repo\", \"is_private\": false, \"description\": \"\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/user", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0308558940887", - "X-Accepted-OAuth-Scopes": "account", - "Connection": "Keep-Alive", - "X-Request-Count": "222", - "X-Version": "e1ce49ad4aa3", - "X-Frame-Options": "SAMEORIGIN", - "content-length": "1041" - }, - "response": "{\"name\":\"owner\",\"display_name\":\"owner\",\"links\":{\"avatar\":{\"href\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\"}},\"nickname\":\"owner\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0510358810425", - "Connection": "Keep-Alive", - "X-Request-Count": "3582", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3609" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B4c4415b4-a438-43c3-b94c-6405498d73fc%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{4c4415b4-a438-43c3-b94c-6405498d73fc}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/static/media?max_depth=1&pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0373301506042", - "Connection": "Keep-Alive", - "X-Request-Count": "1407", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "78" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: static/media\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0608730316162", - "Connection": "Keep-Alive", - "X-Request-Count": "2833", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3609" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B4c4415b4-a438-43c3-b94c-6405498d73fc%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{4c4415b4-a438-43c3-b94c-6405498d73fc}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0706300735474", - "Connection": "Keep-Alive", - "X-Request-Count": "2477", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3609" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B4c4415b4-a438-43c3-b94c-6405498d73fc%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{4c4415b4-a438-43c3-b94c-6405498d73fc}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/.gitattributes", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0431091785431", - "Connection": "Keep-Alive", - "X-Request-Count": "3146", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "136" - }, - "response": "/.github export-ignore\n/.gitattributes export-ignore\n/.editorconfig export-ignore\n/.travis.yml export-ignore\n**/*.js.snap export-ignore\n", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0649449825287", - "Connection": "Keep-Alive", - "X-Request-Count": "4326", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3609" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B4c4415b4-a438-43c3-b94c-6405498d73fc%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{4c4415b4-a438-43c3-b94c-6405498d73fc}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts?max_depth=1&pagelen=20", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0401730537415", - "Connection": "Keep-Alive", - "X-Request-Count": "4612", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "6371" - }, - "response": "{\"pagelen\":20,\"values\":[{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"}},\"path\":\"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":1707},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"}},\"path\":\"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2565},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"}},\"path\":\"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2786},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"}},\"path\":\"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":16071},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"}},\"path\":\"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":7465}],\"page\":1}", - "status": 200 - }, - { - "body": "------WebKitFormBoundaryth5732MTeGuktWta\r\nContent-Disposition: form-data; name=\"static/media/netlify.png\"; filename=\"netlify.png\"\r\nContent-Type: image/png\r\n\r\nPNG\r\n\u001a\n\u0000\u0000\u0000\rIHDR\u0000\u0000\u0000\u0000\u0000\u0000\b\u0003\u0000\u0000\u0000/A9K\u0000\u0000\u0000ÀPLTEÿÿÿ9»0¶º@§½C¤½7°»<«¼F¡¾-¹¹3³º>¨¼*¼¹'¿¸$¸)½¸H¾L¿ñúúìõødµÇç÷öàðó-§¹R¯Â\u0016õ;ȽØîð\u0000«²RÌÃ>þLÀÁ£ÙÜf¿ÈÇÓ»Üä\\¬Äh¬ÇÚÒkÔÉSÇÃ|Ïϸæå¬ààP»ÁÇæéS¸Ã\u0017©¶Ð×q¾ËªÖÞ#·z²ÍÀÕ0¸¢âÜÏðìtÒÌ×ÖdÆÇÈÐÍÙÏäìv¶Ì¿ÑaAq\u0005\u0000\u0000\fIDATxíVâÈ\u0016\r7\u0001Q¬@\u0012;¨@´\u0007\u0011\bIÚ>Ó\b´ïÿV§jï$uMðÂŵÎùgV\u000fT*U_þ½kW!cý_§\u001295IýÿÜþó³j\fEäç\rêç÷2íö&Óí©Q\u0004õÜpýø6±$·7¢n¿I(%·¾cÔKú\u000f×å·p¬ÿãJ b:½cýÛK\u0014³ìò&}sy{b°þ¥¨\u001báõIÁr·tý<%ÖB¬SúUâÖåNE~\\v°þ@¥8gdÒ¡*âüî\u0004`¤\u00032[\u0006Qìßu:G/°ýI' õþ^\u001cÙ1r×\u0011%Qu.ÿe]þ +wGuLtK\u0013.rïc[&`Ñ*}wu<ÇJÝêt ¾Ày$ÇÈ\u0015Uçª\bë\tú¤èW £8Öàd\u0005`wb\u0014ÓÇpÜ]]M]º¸8|õ'\u0017TWWEh ׫@uÅn8´cäî\u0002¥Á«+ÿ9gJ±\u000eí\u0018º%\u0001[QÔ¨\u000eíØÓÅ\u0011,Ã@¯?9\u0014ï}`ÇüÕ0Æ\u0006L5¯ÍÕ\u0001¹h=O\nÉ¡Ã\u001d3JºhR®ùA¹¨¦O\u0017br¬W¸ú¤: n5#y]ñÌuVÚÌW\u0017\u001d]¡¨\u000eeßÓ_çù3é\u001f\u0015\fòÜ\u0015aÝ\u0003µ³_,r\u000eþÌÉüWiúô\u0018a¢}ói¿ÑìßóñW<ûÃ\tÚdõ<}^a\u0014\u000b±°(&Íû=Ö1\"`±pNùéä[H;\u0016Q¥ËY¾7Çú³J¥\"ÍÑ\u001cò<\u0011§YeIßv4Ûcä¾RÑÀî|Ã\u00030 \u0013\u0013»=ÉqUöãX\u001f±4²æýT{ðW\u0013Q\u001a|\u0006ó\u0003í#ÇHe [)O>/æå¸JÇùºc}\u0011KåjªÅ\u0014sAu{Ê\u0006úªc[¦4Sú?\u0015r±5L^óa¾æX¿ÕÒ¸(\u0019{ÕîXÝëLì>ö}>L«ò\u0005ÇÈ}K\u0007=3<˳LV\u0001¬\u0001óÇ\u001fdTTw¬?k¡JÐ\fÕâìì_\u001eÎü\u0006Ö\u001e\f8\u0016\u0005û¤c$Ã2¥dOæ{!F;ï\r\u0001Ï#\u000e:¨|ʱþ}K\fئÂ-SáÀAß4 KÖôÊ¡ZÙðsX³Ön.*aEúóu(\u001e8\u0006y7ÀçTÙüée·\u0014UÌlùéÂNyEØ¡Èp&t³S¬Álý cØ\\\u00053ra~MçÓÕLh\u0014\u000f\u001ch\u001acõ\u0007V¦ï,?nÛrð\u000e2<\fêíÂÜþj6DÆQkÐ\u001añã\u001b\u0006áGN\u00176ÜKf\u001aÆ\u0006=ß\u0018`!ùÔC)Æ£AjönÇúõº\ró\u0019¹D2âÌÈU\u0019Ìô\u0003G.M£QG½Ó1²¨kxµ\f\u000bÈ26\u0018qhÆbÌ\t>_à )×è]Ù¬k\b\u0001:\u001b\u0015r\u0001\u001b¤9 å#íã¬3l\r8\u0014\fóÓ-\u0010<_/ã£ÞÙk1\u0014h »á¯JÀ¢ZìtÌ^©¹ðv\u0018¶\nÑ\u0006\u0010£a\u0011dÅ\r^¶*R7å¹3:¶ØáXU¯ÇÐ0ª\u0017q\r`kÑʯÒi°ÒâHËCXWU\u000ef/,Þ\u0015´\u0003/MSâú.ÏÀÙÐ<³^(\\V\u0019=²¬zN6¶84\rðs¬^{yÙ¼x.;\t¦ÑYQagbò C X$MdpÑ1^i\u000f$ka»öGõ\u0014\rçµ\n\u0006ÑÉH\u0002\u0000Q\\\u0017Ø5h\tûÐ|mÎ(\fGÂñÆ_Z!Ç*päX\u0019 Ëw\u001ar°¬<#qßÑN¬7/ÓaÖÂ!7\u0018Ya6kÃT.ìE£Ñ°d´4kiù``NS\u0014é\n\u00146Æ%£jÍ\u0011Ïù(Ô4á49_)Y£¡'¿Ý°d.\u0004EÞW\u0016O«µ\rhmÀç§\u0016«T-\\AKy!ß\u0015íå\u0002±(\u0002f/ÜFÃ\u0000ÎÎz¸¾¶{ÒMGb>jÕÓú\t¶¯¥!hbye³\bçwP6°\u0011Kdé\u0006.G\u0012¦½@Xý¡ø\u0018Cè^WdÕ\u0017\u0001§p\"`p\u001b\"Vai \u00010Èùò 3i\u0005ÖÅ\u0007\u0001{º,V²¬p±äwÙ±çº\r7âXc\u0011K\r¦F21BK]< Æj-\u000fÙ\u0010¾¥´få!Ú\n±§¦¹ãÜB\u0019K!Ó\"¹\u0006\u001eÐZò\u0015è/\u0017Úæ\u0017²\u000bÔ,NàöbN¶\u001d»IfáXã\u0012ÁÐ\u001e!=\u0000\"ΧYÄb®«Lùð°[ Û\u001bc1q]:HæqCL;{',*\u0012\u0018Î\tõlíLXPÌô\u000fö|ãyôJÝçÜô1é¢\u0017³vibâObéVYâd®ëÅ}lMÔÖØ0\u001bdÈE\u0016ma\u001ce\u0005Ê\\`i¨QY\rE4æïl'\u001e«ÆÁ\b¸/ù\u0006@\u0017vº\u0002\u000b©hA`w;a9SfZ/0ATãqO`c£(Uxm\t\u0001ô%P\u0010yfkð\u001e¬6ëmȨ\u00034å\"\u0003X¼¦qò\n,£\u0003\u001fë·Ü\t\u0005TT0W\u001c¾Pòiʱ¨ÒÌîÚ±^¬FLrXãT\u0019PïÏH»êõÆ£-UÂRÎjÄj;Ø6æ\u0007Iù\u000fYìf\u0012BåfµÛüä½*\u001b-\u0003_?\u0019kd\u001e :I.üiQÂ$bõÔí.%¨sƸqªx±\u001b(ãbcùb®¶ O?\u0018öË´ÈE±É¹,廉\\ì¹aGѹªª[èXU *Fá\nØÆ\r÷=L°Ï°þq\u0001è\u0015Íqã\u0007\u000fÉ1Ö`ÂõÖ¦ÞÄ\u0011\u0016\u00123Q& ô\u0007Ùdk\u0000ï\u001b»mÏkg\u001fïzÚÊg)\u0015ã\"6×5C½'·\u0004¨í[ÞFq¤#bAÊöyV\u001e\u0015ç¼qàëSíæ×v\u0013êCXg9UµçGÂ7)\u0017ìõÀä\u001dÜ6M¹À¸X7½v\bTɰÒr!DðyñD\u0019\u0015ret\u0005!¥äÍ«¦t\u001fË-\n?\u0010Íg£´³\u000bM·\u0003¬]ò\u0001î¬cj\\òÁxÆ\u0002\\\u0018En\u001fcK`´í..¡¼l\u0003Ç@°Ý|âK[Û«1\f\bF,&*õ\r#)ÆÖ(/\u0003ÛVª÷¶Ùu\f~ÈCZÃ%UY\t~\u0002ǵP- âýÆéý4pÞfkrîC²½¤\u0007/zUUø³ möÁ¿mü¯,06\u0016`RíQç¾ÄFpßÚÔ4®t\u001dmT#UAv¾Ém4\nµ$©ËfÞ\u0005Æþ°é8\u001aY\u0016Ér¬$V¹j>¾\u0012UE|,qJüYÊ\u000e®\u0000_\u0013õðåÿ\u0003,\u0010F«\nh\u0018ɸ4PP\u001ca}Ù³\u0007uÌZ\u0015ð7¸\u001cr±\u001e[m=¸EÓK\u0007\u0003çj\u0010$ZCôUä´\u0017ü°!H\u000eàÖ\u0019Ô1³pËM§ÕBE c£ríÃ-&³ctZä[\u00016í\u0000U¹w\u0010·\u001cÃyWÈ\u0005VÜ[LE=4\bv\u0005ùêþÜb*rì/\\\u001d\u0017`\u0001#qíÓ-&ûáÜ4s\u001aÉ\u0002. \u0016Ý<߯[0·\u0019\fCå¹p9X\u0007ø]\nê\u0018SMÁÃHnj&áîHyØmTûw \u0018NQ\u0003¾ó¬F\u0019v t9fw1¬\u0003ý\u0006ͧÈE!ñ(Jã\u0005¶ÛÒMqÔt°ÌMf¯\u00008{Àß·29v~þ\u0002×þêÀ\"×áÜ*\u0004«á\u0006®µÃ6\u0015\u001f\u0003«È1\"\u0010pÁx;\n´¾vE\u0012lD¬#üÑ1üYÜÖu2®Ã»ÅD\f\\5ÜÀ¥¶G;c=ÒopÛ]\r\fb/â ¿\f'è\"ßQDº\u001aX\u0017#ù ¢¾t[¨c\fè°ÛíâÏRx[\u0017ãñÜ\u0002°®¦t\u0003ç\r°\u001cÿ\u001e\u0015\u000b\u001dS\u001b8ogË\u001cý/Æ08\u001bxöîúØD\u0019æØ#´ç<\u0011Á1ä/1ßN\u0002¦9nà\u0010Æ®\u001e\u001c,Í$\u001eIü25\\owÝ}H°Çk\u0001þ\u001bøËu÷ú¸uK\u0003£0ðÏ5 ¢ K6}qR,Z \u001e¯\u0005uSíãÉÿÆ4»{-\t#yb·\u0000Arìú÷îoê$Õ±oà\u0015JqìåÔ<¹ìïé\u0017Õ¯ßYzý:5¬\u0017\u0004ûý}Êyùõë×ËÿzýèäµôXÿ\u0005:¶@¼v&µ\u0000\u0000\u0000\u0000IEND®B`\r\n------WebKitFormBoundaryth5732MTeGuktWta\r\nContent-Disposition: form-data; name=\"message\"\r\n\r\nUpload âstatic/media/netlify.pngâ\r\n------WebKitFormBoundaryth5732MTeGuktWta\r\nContent-Disposition: form-data; name=\"branch\"\r\n\r\nmaster\r\n------WebKitFormBoundaryth5732MTeGuktWta--\r\n", - "method": "POST", - "url": "/2.0/repositories/owner/repo/src", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "text/html; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/commit/c6b5b884b6a776a4622a2ad624f29e6a46959597", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.494828939438", - "Connection": "Keep-Alive", - "X-Request-Count": "3011", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "0" - }, - "response": null, - "status": 201 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0500440597534", - "Connection": "Keep-Alive", - "X-Request-Count": "4751", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2565" - }, - "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n \n\t \n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0304388999939", - "Connection": "Keep-Alive", - "X-Request-Count": "1925", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1707" - }, - "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0575559139252", - "Connection": "Keep-Alive", - "X-Request-Count": "2985", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2786" - }, - "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n\n\t\t\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.
\n\t\t\n\t\n\t \n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.110911846161", - "Connection": "Keep-Alive", - "X-Request-Count": "3483", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B4c4415b4-a438-43c3-b94c-6405498d73fc%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{4c4415b4-a438-43c3-b94c-6405498d73fc}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.123555898666", - "Connection": "Keep-Alive", - "X-Request-Count": "4996", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B4c4415b4-a438-43c3-b94c-6405498d73fc%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{4c4415b4-a438-43c3-b94c-6405498d73fc}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-02-02---A-Brief-History-of-Typography.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.110446929932", - "Connection": "Keep-Alive", - "X-Request-Count": "3512", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B4c4415b4-a438-43c3-b94c-6405498d73fc%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{4c4415b4-a438-43c3-b94c-6405498d73fc}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0367901325226", - "Connection": "Keep-Alive", - "X-Request-Count": "124", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "16071" - }, - "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western worldâs first major printed books, the âFortyâTwoâLineâ Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western worldâs first major printed books, the âFortyâTwoâLineâ Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 â 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n\n\t \n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information â including revolutionary ideas â transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a âsecretâ. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439â1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him âlike a ray of lightâ.\n\n\n\t
Johannes Gutenberg \n\n\t \n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fustâs son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n\n\t
Early wooden printing press as depicted in 1568. \n\n\t \n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454â55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the FustâSchöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the GutenbergâFust shop might have employed as many as 25 craftsmen.\n\n\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of âmovable typeâ.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n\n\t\t\nAll that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to followâyour grace would be able to read it without effort, and indeed without glasses.
\n\t\t\n\t\n\t \n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in âcuneiformâ style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that âthe decisive factor for the birth of typographyâ, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0526969432831", - "Connection": "Keep-Alive", - "X-Request-Count": "4296", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "7465" - }, - "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didnât mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other â the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n\n\n*The 42âLine Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But itâs the third transition that stripped it naked. Typefaces are faceless these days. Theyâre just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the âright oneâ is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\nâ Massimo Vignelli\n\nTypography is not about typefaces. Itâs not about what looks best, itâs about what feels right. What communicates the message best. Typography, in its essence, is about the message. âTypographical design should perform optically what the speaker creates through voice and gesture of his thoughts.â, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because itâs a safe option. Itâs always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still donât spot it in the street.\n\n\n\t\t\nIt is a press, certainly, but a press from which shall flow in inexhaustible streams⦠Through it, god will spread his word.
\n\t\t\n\t\n\t \n\nTypefaces donât look handmade these days. And thatâs all right. They donât have to. Industrialism took that away from them and weâre fine with it. Weâve traded that part of humanity for a process that produces more books that are easier to read. That canât be bad. And it isnât.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> â Eric Gill\n\nWeâve come close to âperfectionâ in the last five centuries. The letters are crisp and without rough edges. We print our compositions with highâprecision printers on a high quality, machine made paper.\n\n\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we donât care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. Thereâs no meaning in our work. Type sizes, leading, margins⦠Itâs all just a few clicks or lines of code. The message isnât important anymore. Thereâs no more âwhyâ behind the âwhatâ.\n\n## Chasing perfection\n\nHuman beings arenât perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2017-18-08---The-Birth-of-Movable-Type.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0961618423462", - "Connection": "Keep-Alive", - "X-Request-Count": "4514", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nKnowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B4c4415b4-a438-43c3-b94c-6405498d73fc%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{4c4415b4-a438-43c3-b94c-6405498d73fc}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.118585824966", - "Connection": "Keep-Alive", - "X-Request-Count": "1624", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B4c4415b4-a438-43c3-b94c-6405498d73fc%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{4c4415b4-a438-43c3-b94c-6405498d73fc}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "body": "------WebKitFormBoundaryTlpu0VAsfhBhBoPh\r\nContent-Disposition: form-data; name=\"files\"\r\n\r\nstatic/media/netlify.png\r\n------WebKitFormBoundaryTlpu0VAsfhBhBoPh\r\nContent-Disposition: form-data; name=\"branch\"\r\n\r\nmaster\r\n------WebKitFormBoundaryTlpu0VAsfhBhBoPh\r\nContent-Disposition: form-data; name=\"message\"\r\n\r\nDelete âstatic/media/netlify.pngâ\r\n------WebKitFormBoundaryTlpu0VAsfhBhBoPh--\r\n", - "method": "POST", - "url": "/2.0/repositories/owner/repo/src", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "text/html; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/commit/0a87509949b9e7650061d3d07b2d3728d468b6ba", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.42619395256", - "Connection": "Keep-Alive", - "X-Request-Count": "2843", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "0" - }, - "response": null, - "status": 201 - } -] diff --git a/source/admin/cypress/fixtures/BitBucket Backend Media Library - REST API__can publish entry with image.json b/source/admin/cypress/fixtures/BitBucket Backend Media Library - REST API__can publish entry with image.json deleted file mode 100644 index f9fb6ab..0000000 --- a/source/admin/cypress/fixtures/BitBucket Backend Media Library - REST API__can publish entry with image.json +++ /dev/null @@ -1,2041 +0,0 @@ -[ - { - "method": "GET", - "url": "/2.0/repositories/owner/repo", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0506629943848", - "Connection": "Keep-Alive", - "X-Request-Count": "3063", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3011" - }, - "response": "{\"scm\": \"git\", \"website\": null, \"has_wiki\": false, \"name\": \"repo\", \"links\": {\"watchers\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/watchers\"}, \"branches\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches\"}, \"tags\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/tags\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits\"}, \"clone\": [{\"href\": \"https://owner@bitbucket.org/owner/repo.git\", \"name\": \"https\"}, {\"href\": \"git@bitbucket.org:owner/repo.git\", \"name\": \"ssh\"}], \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"source\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/src\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}, \"hooks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/hooks\"}, \"forks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/forks\"}, \"downloads\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/downloads\"}, \"pullrequests\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests\"}}, \"fork_policy\": \"allow_forks\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\", \"language\": \"\", \"created_on\": \"2020-04-12T13:19:14.192524+00:00\", \"mainbranch\": {\"type\": \"branch\", \"name\": \"master\"}, \"full_name\": \"owner/repo\", \"has_issues\": false, \"owner\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T13:19:30.608709+00:00\", \"size\": 4283921, \"type\": \"repository\", \"slug\": \"repo\", \"is_private\": false, \"description\": \"\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/user", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0366551876068", - "X-Accepted-OAuth-Scopes": "account", - "Connection": "Keep-Alive", - "X-Version": "e1ce49ad4aa3", - "X-Request-Count": "812", - "X-Frame-Options": "SAMEORIGIN", - "content-length": "1041" - }, - "response": "{\"name\":\"owner\",\"display_name\":\"owner\",\"links\":{\"avatar\":{\"href\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\"}},\"nickname\":\"owner\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0648241043091", - "Connection": "Keep-Alive", - "X-Request-Count": "4133", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/static/media?max_depth=1&pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0375030040741", - "Connection": "Keep-Alive", - "X-Request-Count": "3243", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "78" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: static/media\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0505330562592", - "Connection": "Keep-Alive", - "X-Request-Count": "333", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0532910823822", - "Connection": "Keep-Alive", - "X-Request-Count": "1206", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts?max_depth=1&pagelen=20", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0471169948578", - "Connection": "Keep-Alive", - "X-Request-Count": "4138", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "6396" - }, - "response": "{\"pagelen\":20,\"values\":[{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"}},\"path\":\"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":1707},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"}},\"path\":\"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2565},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"}},\"path\":\"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2786},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"}},\"path\":\"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":16071},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"}},\"path\":\"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":7465}],\"page\":1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0407040119171", - "Connection": "Keep-Alive", - "X-Request-Count": "2186", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2786" - }, - "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n \n\t \n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0415089130402", - "Connection": "Keep-Alive", - "X-Request-Count": "1185", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2565" - }, - "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n\n\t\t\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.
\n\t\t\n\t\n\t \n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0405051708221", - "Connection": "Keep-Alive", - "X-Request-Count": "4366", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1707" - }, - "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-02-02---A-Brief-History-of-Typography.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0958409309387", - "Connection": "Keep-Alive", - "X-Request-Count": "1210", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0911099910736", - "Connection": "Keep-Alive", - "X-Request-Count": "4340", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.09095287323", - "Connection": "Keep-Alive", - "X-Request-Count": "618", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0363340377808", - "Connection": "Keep-Alive", - "X-Request-Count": "1124", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "16071" - }, - "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western worldâs first major printed books, the âFortyâTwoâLineâ Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western worldâs first major printed books, the âFortyâTwoâLineâ Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 â 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n\n\t \n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information â including revolutionary ideas â transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a âsecretâ. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439â1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him âlike a ray of lightâ.\n\n\n\t
Johannes Gutenberg \n\n\t \n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fustâs son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n\n\t
Early wooden printing press as depicted in 1568. \n\n\t \n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454â55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the FustâSchöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the GutenbergâFust shop might have employed as many as 25 craftsmen.\n\n\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of âmovable typeâ.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n\n\t\t\nAll that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to followâyour grace would be able to read it without effort, and indeed without glasses.
\n\t\t\n\t\n\t \n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in âcuneiformâ style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that âthe decisive factor for the birth of typographyâ, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.031583070755", - "Connection": "Keep-Alive", - "X-Request-Count": "1404", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "7465" - }, - "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didnât mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other â the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n\n\n*The 42âLine Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But itâs the third transition that stripped it naked. Typefaces are faceless these days. Theyâre just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the âright oneâ is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\nâ Massimo Vignelli\n\nTypography is not about typefaces. Itâs not about what looks best, itâs about what feels right. What communicates the message best. Typography, in its essence, is about the message. âTypographical design should perform optically what the speaker creates through voice and gesture of his thoughts.â, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because itâs a safe option. Itâs always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still donât spot it in the street.\n\n\n\t\t\nIt is a press, certainly, but a press from which shall flow in inexhaustible streams⦠Through it, god will spread his word.
\n\t\t\n\t\n\t \n\nTypefaces donât look handmade these days. And thatâs all right. They donât have to. Industrialism took that away from them and weâre fine with it. Weâve traded that part of humanity for a process that produces more books that are easier to read. That canât be bad. And it isnât.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> â Eric Gill\n\nWeâve come close to âperfectionâ in the last five centuries. The letters are crisp and without rough edges. We print our compositions with highâprecision printers on a high quality, machine made paper.\n\n\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we donât care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. Thereâs no meaning in our work. Type sizes, leading, margins⦠Itâs all just a few clicks or lines of code. The message isnât important anymore. Thereâs no more âwhyâ behind the âwhatâ.\n\n## Chasing perfection\n\nHuman beings arenât perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2017-18-08---The-Birth-of-Movable-Type.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0874719619751", - "Connection": "Keep-Alive", - "X-Request-Count": "122", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nKnowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0925631523132", - "Connection": "Keep-Alive", - "X-Request-Count": "1692", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2350" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"initial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name ~ \"cms/\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0618059635162", - "Connection": "Keep-Alive", - "X-Request-Count": "3868", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0743448734283", - "Connection": "Keep-Alive", - "X-Request-Count": "4930", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0501232147217", - "Connection": "Keep-Alive", - "X-Request-Count": "603", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0371580123901", - "Connection": "Keep-Alive", - "X-Request-Count": "4185", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "105" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: content/posts/1970-01-01-first-title.md\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0447599887848", - "Connection": "Keep-Alive", - "X-Request-Count": "4825", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/.gitattributes", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0344631671906", - "Connection": "Keep-Alive", - "X-Request-Count": "3005", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "136" - }, - "response": "/.github export-ignore\n/.gitattributes export-ignore\n/.editorconfig export-ignore\n/.travis.yml export-ignore\n**/*.js.snap export-ignore\n", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0492219924927", - "Connection": "Keep-Alive", - "X-Request-Count": "91", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3625" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "body": "------WebKitFormBoundaryKZ7AiLh9AIRSUX7t\r\nContent-Disposition: form-data; name=\"content/posts/1970-01-01-first-title.md\"; filename=\"1970-01-01-first-title.md\"\r\nContent-Type: application/octet-stream\r\n\r\n---\ntemplate: post\ntitle: first title\nimage: /media/netlify.png\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\r\n------WebKitFormBoundaryKZ7AiLh9AIRSUX7t\r\nContent-Disposition: form-data; name=\"static/media/netlify.png\"; filename=\"netlify.png\"\r\nContent-Type: image/png\r\n\r\nPNG\r\n\u001a\n\u0000\u0000\u0000\rIHDR\u0000\u0000\u0000\u0000\u0000\u0000\b\u0003\u0000\u0000\u0000/A9K\u0000\u0000\u0000ÀPLTEÿÿÿ9»0¶º@§½C¤½7°»<«¼F¡¾-¹¹3³º>¨¼*¼¹'¿¸$¸)½¸H¾L¿ñúúìõødµÇç÷öàðó-§¹R¯Â\u0016õ;ȽØîð\u0000«²RÌÃ>þLÀÁ£ÙÜf¿ÈÇÓ»Üä\\¬Äh¬ÇÚÒkÔÉSÇÃ|Ïϸæå¬ààP»ÁÇæéS¸Ã\u0017©¶Ð×q¾ËªÖÞ#·z²ÍÀÕ0¸¢âÜÏðìtÒÌ×ÖdÆÇÈÐÍÙÏäìv¶Ì¿ÑaAq\u0005\u0000\u0000\fIDATxíVâÈ\u0016\r7\u0001Q¬@\u0012;¨@´\u0007\u0011\bIÚ>Ó\b´ïÿV§jï$uMðÂŵÎùgV\u000fT*U_þ½kW!cý_§\u001295IýÿÜþó³j\fEäç\rêç÷2íö&Óí©Q\u0004õÜpýø6±$·7¢n¿I(%·¾cÔKú\u000f×å·p¬ÿãJ b:½cýÛK\u0014³ìò&}sy{b°þ¥¨\u001báõIÁr·tý<%ÖB¬SúUâÖåNE~\\v°þ@¥8gdÒ¡*âüî\u0004`¤\u00032[\u0006Qìßu:G/°ýI' õþ^\u001cÙ1r×\u0011%Qu.ÿe]þ +wGuLtK\u0013.rïc[&`Ñ*}wu<ÇJÝêt ¾Ày$ÇÈ\u0015Uçª\bë\tú¤èW £8Öàd\u0005`wb\u0014ÓÇpÜ]]M]º¸8|õ'\u0017TWWEh ׫@uÅn8´cäî\u0002¥Á«+ÿ9gJ±\u000eí\u0018º%\u0001[QÔ¨\u000eíØÓÅ\u0011,Ã@¯?9\u0014ï}`ÇüÕ0Æ\u0006L5¯ÍÕ\u0001¹h=O\nÉ¡Ã\u001d3JºhR®ùA¹¨¦O\u0017br¬W¸ú¤: n5#y]ñÌuVÚÌW\u0017\u001d]¡¨\u000eeßÓ_çù3é\u001f\u0015\fòÜ\u0015aÝ\u0003µ³_,r\u000eþÌÉüWiúô\u0018a¢}ói¿ÑìßóñW<ûÃ\tÚdõ<}^a\u0014\u000b±°(&Íû=Ö1\"`±pNùéä[H;\u0016Q¥ËY¾7Çú³J¥\"ÍÑ\u001cò<\u0011§YeIßv4Ûcä¾RÑÀî|Ã\u00030 \u0013\u0013»=ÉqUöãX\u001f±4²æýT{ðW\u0013Q\u001a|\u0006ó\u0003í#ÇHe [)O>/æå¸JÇùºc}\u0011KåjªÅ\u0014sAu{Ê\u0006úªc[¦4Sú?\u0015r±5L^óa¾æX¿ÕÒ¸(\u0019{ÕîXÝëLì>ö}>L«ò\u0005ÇÈ}K\u0007=3<˳LV\u0001¬\u0001óÇ\u001fdTTw¬?k¡JÐ\fÕâìì_\u001eÎü\u0006Ö\u001e\f8\u0016\u0005û¤c$Ã2¥dOæ{!F;ï\r\u0001Ï#\u000e:¨|ʱþ}K\fئÂ-SáÀAß4 KÖôÊ¡ZÙðsX³Ön.*aEúóu(\u001e8\u0006y7ÀçTÙüée·\u0014UÌlùéÂNyEØ¡Èp&t³S¬Álý cØ\\\u00053ra~MçÓÕLh\u0014\u000f\u001ch\u001acõ\u0007V¦ï,?nÛrð\u000e2<\fêíÂÜþj6DÆQkÐ\u001añã\u001b\u0006áGN\u00176ÜKf\u001aÆ\u0006=ß\u0018`!ùÔC)Æ£AjönÇúõº\ró\u0019¹D2âÌÈU\u0019Ì��\u0003G.M£QG½Ó1²¨kxµ\f\u000bÈ26\u0018qhÆbÌ\t>_à )×è]Ù¬k\b\u0001:\u001b\u0015r\u0001\u001b¤9 å#íã¬3l\r8\u0014\fóÓ-\u0010<_/ã£ÞÙk1\u0014h »á¯JÀ¢ZìtÌ^©¹ðv\u0018¶\nÑ\u0006\u0010£a\u0011dÅ\r^¶*R7å¹3:¶ØáXU¯ÇÐ0ª\u0017q\r`kÑʯÒi°ÒâHËCXWU\u000ef/,Þ\u0015´\u0003/MSâú.ÏÀÙÐ<³^(\\V\u0019=²¬zN6¶84\rðs¬^{yÙ¼x.;\t¦ÑYQagbò C X$MdpÑ1^i\u000f$ka»öGõ\u0014\rçµ\n\u0006ÑÉH\u0002\u0000Q\\\u0017Ø5h\tûÐ|mÎ(\fGÂñÆ_Z!Ç*päX\u0019 Ëw\u001ar°¬<#qßÑN¬7/ÓaÖÂ!7\u0018Ya6kÃT.ìE£Ñ°d´4kiù``NS\u0014é\n\u00146Æ%£jÍ\u0011Ïù(Ô4á49_)Y£¡'¿Ý°d.\u0004EÞW\u0016O«µ\rhmÀç§\u0016«T-\\AKy!ß\u0015íå\u0002±(\u0002f/ÜFÃ\u0000ÎÎz¸¾¶{ÒMGb>jÕÓú\t¶¯¥!hbye³\bçwP6°\u0011Kdé\u0006.G\u0012¦½@Xý¡ø\u0018Cè^WdÕ\u0017\u0001§p\"`p\u001b\"Vai \u00010Èùò 3i\u0005ÖÅ\u0007\u0001{º,V²¬p±äwÙ±çº\r7âXc\u0011K\r¦F21BK]< Æj-\u000fÙ\u0010¾¥´få!Ú\n±§¦¹ãÜB\u0019K!Ó\"¹\u0006\u001eÐZò\u0015è/\u0017Úæ\u0017²\u000bÔ,NàöbN¶\u001d»IfáXã\u0012ÁÐ\u001e!=\u0000\"ΧYÄb®«Lùð°[ Û\u001bc1q]:HæqCL;{',*\u0012\u0018Î\tõlíLXPÌô\u000fö|ãyôJÝçÜô1é¢\u0017³vibâObéVYâd®ëÅ}lMÔÖØ0\u001bdÈE\u0016ma\u001ce\u0005Ê\\`i¨QY\rE4æïl'\u001e«ÆÁ\b¸/ù\u0006@\u0017vº\u0002\u000b©hA`w;a9SfZ/0ATãqO`c£(Uxm\t\u0001ô%P\u0010yfkð\u001e¬6ëmȨ\u00034å\"\u0003X¼¦qò\n,£\u0003\u001fë·Ü\t\u0005TT0W\u001c¾Pòiʱ¨ÒÌîÚ±^¬FLrXãT\u0019PïÏH»êõÆ£-UÂRÎjÄj;Ø6æ\u0007Iù\u000fYìf\u0012BåfµÛüä½*\u001b-\u0003_?\u0019kd\u001e :I.üiQÂ$bõÔí.%¨sƸqªx±\u001b(ãbcùb®¶ O?\u0018öË´ÈE±É¹,廉\\ì¹aGѹªª[èXU *Fá\nØÆ\r÷=L°Ï°þq\u0001è\u0015Íqã\u0007\u000fÉ1Ö`ÂõÖ¦ÞÄ\u0011\u0016\u00123Q& ô\u0007Ùdk\u0000ï\u001b»mÏkg\u001fïzÚÊg)\u0015ã\"6×5C½'·\u0004¨í[ÞFq¤#bAÊöyV\u001e\u0015ç¼qàëSíæ×v\u0013êCXg9UµçGÂ7)\u0017ìõÀä\u001dÜ6M¹À¸X7½v\bTɰÒr!DðyñD\u0019\u0015ret\u0005!¥äÍ«¦t\u001fË-\n?\u0010Íg£´³\u000bM·\u0003¬]ò\u0001î¬cj\\òÁxÆ\u0002\\\u0018En\u001fcK`´í..¡¼l\u0003Ç@°Ý|âK[Û«1\f\bF,&*õ\r#)ÆÖ(/\u0003ÛVª÷¶Ùu\f~ÈCZÃ%UY\t~\u0002ǵP- âýÆéý4pÞfkrîC²½¤\u0007/zUUø³ möÁ¿mü¯,06\u0016`RíQç¾ÄFpßÚÔ4®t\u001dmT#UAv¾Ém4\nµ$©ËfÞ\u0005Æþ°é8\u001aY\u0016Ér¬$V¹j>¾\u0012UE|,qJüYÊ\u000e®\u0000_\u0013õðåÿ\u0003,\u0010F«\nh\u0018ɸ4PP\u001ca}Ù³\u0007uÌZ\u0015ð7¸\u001cr±\u001e[m=¸EÓK\u0007\u0003çj\u0010$ZCôUä´\u0017ü°!H\u000eàÖ\u0019Ô1³pËM§ÕBE c£ríÃ-&³ctZä[\u00016í\u0000U¹w\u0010·\u001cÃyWÈ\u0005VÜ[LE=4\bv\u0005ùêþÜb*rì/\\\u001d\u0017`\u0001#qíÓ-&ûáÜ4s\u001aÉ\u0002. \u0016Ý<߯[0·\u0019\fCå¹p9X\u0007ø]\nê\u0018SMÁÃHnj&áîHyØmTûw \u0018NQ\u0003¾ó¬F\u0019v t9fw1¬\u0003ý\u0006ͧÈE!ñ(Jã\u0005¶ÛÒMqÔt°ÌMf¯\u00008{Àß·29v~þ\u0002×þêÀ\"×áÜ*\u0004«á\u0006®µÃ6\u0015\u001f\u0003«È1\"\u0010pÁx;\n´¾vE\u0012lD¬#üÑ1üYÜÖu2®Ã»ÅD\f\\5ÜÀ¥¶G;c=ÒopÛ]\r\fb/â ¿\f'è\"ßQDº\u001aX\u0017#ù ¢¾t[¨c\fè°ÛíâÏRx[\u0017ãñÜ\u0002°®¦t\u0003ç\r°\u001cÿ\u001e\u0015\u000b\u001dS\u001b8ogË\u001cý/Æ08\u001bxöîúØD\u0019æØ#´ç<\u0011Á1ä/1ßN\u0002¦9nà\u0010Æ®\u001e\u001c,Í$\u001eIü25\\owÝ}H°Çk\u0001þ\u001bøËu÷ú¸uK\u0003£0ðÏ5 ¢ K6}qR,Z \u001e¯\u0005uSíãÉÿÆ4»{-\t#yb·\u0000Arìú÷îoê$Õ±oà\u0015JqìåÔ<¹ìïé\u0017Õ¯ßYzý:5¬\u0017\u0004ûý}Êyùõë×ËÿzýèäµôXÿ\u0005:¶@¼v&µ\u0000\u0000\u0000\u0000IEND®B`\r\n------WebKitFormBoundaryKZ7AiLh9AIRSUX7t\r\nContent-Disposition: form-data; name=\"message\"\r\n\r\nCreate Post â1970-01-01-first-titleâ\r\n------WebKitFormBoundaryKZ7AiLh9AIRSUX7t\r\nContent-Disposition: form-data; name=\"branch\"\r\n\r\ncms/posts/1970-01-01-first-title\r\n------WebKitFormBoundaryKZ7AiLh9AIRSUX7t\r\nContent-Disposition: form-data; name=\"parents\"\r\n\r\nb782b50eefc7d6f6482ac989eb5c9142d5abfa37\r\n------WebKitFormBoundaryKZ7AiLh9AIRSUX7t--\r\n", - "method": "POST", - "url": "/2.0/repositories/owner/repo/src", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "text/html; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/commit/14f210ffec430f8850dab40f2c8af842a599a883", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.473891019821", - "Connection": "Keep-Alive", - "X-Request-Count": "1335", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "0" - }, - "response": null, - "status": 201 - }, - { - "body": "{\"title\":\"Create Post “1970-01-01-first-title”\",\"source\":{\"branch\":{\"name\":\"cms/posts/1970-01-01-first-title\"}},\"destination\":{\"branch\":{\"name\":\"master\"}},\"description\":\"Automatically generated by Decap CMS\",\"close_source_branch\":true}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.270617961884", - "Connection": "Keep-Alive", - "X-Request-Count": "1460", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "5261" - }, - "response": "{\"rendered\": {\"description\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \" Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"title\": {\"raw\": \"Create Post “1970-01-01-first-title”\", \"markup\": \"markdown\", \"html\": \"Create Post “1970-01-01-first-title”
\", \"type\": \"rendered\"}}, \"type\": \"pullrequest\", \"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:14f210ffec43%0Db782b50eefc7?from_pullrequest_id=1\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:14f210ffec43%0Db782b50eefc7?from_pullrequest_id=1\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"reviewers\": [], \"id\": 1, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T13:19:50.212631+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"14f210ffec43\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/14f210ffec43\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/14f210ffec43\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 0, \"state\": \"OPEN\", \"task_count\": 0, \"participants\": [], \"reason\": \"\", \"updated_on\": \"2020-04-12T13:19:50.244042+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}", - "status": 201 - }, - { - "body": "{\"content\":{\"raw\":\"decap-cms/draft\"}}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/1/comments", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144756625", - "X-Served-By": "app-1118", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0858359336853", - "Connection": "Keep-Alive", - "X-Request-Count": "3473", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1551" - }, - "response": "{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144756625\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1/_/diff#comment-144756625\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 1, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T13:19:51.022428+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T13:19:51.024416+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144756625}", - "status": 201 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0927789211273", - "Connection": "Keep-Alive", - "X-Request-Count": "3251", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:14f210ffec43%0Db782b50eefc7?from_pullrequest_id=1\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:14f210ffec43%0Db782b50eefc7?from_pullrequest_id=1\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 1, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T13:19:50.212631+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"14f210ffec43\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/14f210ffec43\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/14f210ffec43\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T13:19:51.024416+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/1/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0695011615753", - "Connection": "Keep-Alive", - "X-Request-Count": "78", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144756625\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1/_/diff#comment-144756625\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 1, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T13:19:51.022428+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T13:19:51.024416+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144756625}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/diff/cms/posts/1970-01-01-first-title..master?binary=false", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "must-revalidate, max-age=0", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.112940073013", - "Connection": "Keep-Alive", - "X-Request-Count": "4017", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "606" - }, - "response": "diff --git a/content/posts/1970-01-01-first-title.md b/content/posts/1970-01-01-first-title.md\nnew file mode 100644\nindex 0000000..5712f24\n--- /dev/null\n+++ b/content/posts/1970-01-01-first-title.md\n@@ -0,0 +1,11 @@\n+---\n+template: post\n+title: first title\n+image: /media/netlify.png\n+date: 1970-01-01T00:00:00.000Z\n+description: first description\n+category: first category\n+tags:\n+ - tag1\n+---\n+first body\n\\ No newline at end of file\ndiff --git a/static/media/netlify.png b/static/media/netlify.png\nnew file mode 100644\nindex 0000000..13692e6\nBinary files /dev/null and b/static/media/netlify.png differ\n", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/1/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0869829654694", - "Connection": "Keep-Alive", - "X-Request-Count": "4147", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144756625\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1/_/diff#comment-144756625\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 1, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T13:19:51.022428+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T13:19:51.024416+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144756625}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0653989315033", - "Connection": "Keep-Alive", - "X-Request-Count": "4480", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3726" - }, - "response": "{\"name\": \"cms/posts/1970-01-01-first-title\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/cms/posts/1970-01-01-first-title\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/cms/posts/1970-01-01-first-title\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"14f210ffec430f8850dab40f2c8af842a599a883\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/14f210ffec430f8850dab40f2c8af842a599a883\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/14f210ffec430f8850dab40f2c8af842a599a883/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/14f210ffec430f8850dab40f2c8af842a599a883\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/14f210ffec430f8850dab40f2c8af842a599a883\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/14f210ffec430f8850dab40f2c8af842a599a883\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/14f210ffec430f8850dab40f2c8af842a599a883/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/14f210ffec430f8850dab40f2c8af842a599a883/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T13:19:48+00:00\", \"message\": \"Create Post “1970-01-01-first-title”\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/14f210ffec430f8850dab40f2c8af842a599a883/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.044618844986", - "Connection": "Keep-Alive", - "X-Request-Count": "2762", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "180" - }, - "response": "---\ntemplate: post\ntitle: first title\nimage: /media/netlify.png\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.054624080658", - "Connection": "Keep-Alive", - "X-Request-Count": "999", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3726" - }, - "response": "{\"name\": \"cms/posts/1970-01-01-first-title\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/cms/posts/1970-01-01-first-title\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/cms/posts/1970-01-01-first-title\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"14f210ffec430f8850dab40f2c8af842a599a883\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/14f210ffec430f8850dab40f2c8af842a599a883\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/14f210ffec430f8850dab40f2c8af842a599a883/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/14f210ffec430f8850dab40f2c8af842a599a883\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/14f210ffec430f8850dab40f2c8af842a599a883\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/14f210ffec430f8850dab40f2c8af842a599a883\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/14f210ffec430f8850dab40f2c8af842a599a883/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/14f210ffec430f8850dab40f2c8af842a599a883/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T13:19:48+00:00\", \"message\": \"Create Post “1970-01-01-first-title”\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/14f210ffec430f8850dab40f2c8af842a599a883/static/media/netlify.png", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "image/png", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0398240089417", - "Connection": "Keep-Alive", - "X-Request-Count": "963", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "3470" - }, - "response": { - "encoding": "base64", - "content": "iVBORw0KGgoAAAANSUhEUgAAAJcAAACXCAMAAAAvQTlLAAAAwFBMVEX///85rbswtrpAp71DpL03sLs8q7xGob4tubkzs7o+qLwqvLknv7gkwrgpvbhIn75Mm7/x+vrs9fhktcfn9/bg8PMtp7lSr8IWw7U7yL3Y7vAAq7JSzMM+w75MwMGj2dxmv8iLx9O73ORcrMRorMeJ2tJr1MlTx8N8z8+45uWs4OBQu8HH5ulTuMMXqbaW0Ndxvsuq1t4jnrd6ss2TwNUwj7ii4tzP8Ox00syR19ZkxseByNCezdnP5Ox2tsyDv9FhQXEFAAAMiUlEQVR4nO2ci1biyBaGDTcBUaxAEjuoQLQHEQhJ2j7TCLTv/1anau8kdU3wwsW1zvlnVg9UKlVf/r1rVyFjn539X6cSOTWASf2f/9z+87N/agxF5OcN6uf3Mu32JtPtqVEE9X/ccP34NrEktzeibr9JKCW3vo9j1K1L+g/X5bdwrP/jkkqgYjq9Y/3bSxSz7PImfXN5e2Kw/qWoG+H1ScFyt3T9PCXWj0KsU/pV4tblf06HRX5cdoqw/kClOIlnZNKhKovi/O4EYKQDMlsGUezfdTpHL7D9SSeXhoX1/olemhzZMXLXESVRdS7/ZV3+hSt3R3VMdEsTli5yi++OmWOKW4omYNEqfXd1PMdK3ep0IIq+wHkkx8gVVeeqCOsJ+qToV6CjONaf4GQFYHdiFNOex3CM3F1dlIFNgV3Curg4fI71JxdUV1dFaH+g16tAdcVuOLRj5O4CpZPBqyuY/zlnSrEO7Ri6JYMBW4aHUdSoDu3Y08WVESzDm0CvPzkU731gx/zVnTCVxgaeTDWvmJrN1QG5aIY9TwrJnqHDHTNKhrpoUq75Qbmopk8XYoRyrFe4+qQ6hW41m4eJI3ld8cx1VtrMVxcdn12am6GoDoJl39ORX+f5M5PpHxUM8ofcFWHdA7WzXyxynw7+zMn8V2n69BhhhqKCffNpv9Hs3/PxVzx/+8MJi9pk9Tx9XmEUC7GasCgmzfs91jEiYLFwTvmV6eSCW0g7FlGly5FZvjfH+rNKpSLN0RzyPBGnWWVJ35SZmJifdpOONNuTY+S+UtHA7p98wwMwIBMTu4E9yZxxVfbjWB+xNLLm/VR78FcTURp8BvOMA+0jx0iOZSBbKU8+L+aC5bhKx/m6Y30RS+VqqsWSFHNBdXvKBvqqY5JbpjRT+j8VcrE1TF7zYb7mWL/V0rgoGYd71e5Y3etM7D6W9n0+TKvyBcfIfUsHkz0zPMuzTFYBrAHzxx9kVFSfd6w/a6FK0AzV4uzsXx7O/AbWHgw4FgX7pGMkwzKCpWRP5nudIUY77w0Bz5YjDjqofMqx/n1LkIkM2KbCLVPhwEHfNIWeS9b0yqFardnwc1iz1m4uKmFF+pTzdSgeOAZ5N8DnVIPZ/JPpZbcUVcxs+enCTot5RdihyHAmdLNTrMFs/YVj2FwFM3Jhfk3n09VMaBQPHGgaY/UHmFbCpu8sP27bcvAOMjwM6u3C3P5qNkTGUWvQGvHjG5mPBuFHThc23EtmGpfGBoc93xhgIZz51EMpxqNBnWr2bsf69boN8xm5RDKM4szIVRnM9ANHLn9No1FHvdMxsqiHa3i1DAvIMjYYcWjGYpqtzAk+X8MgKdfoXY7ZrGsIATobFXIBG6SNOYogluUj7eOsM2wNOBSbDMOz0y0QPINfL+OCo97ZazEUaCC74a+BSsCiWux0zF6Eqbnwdhi2CtEGEKNhixFkxQ1etipSN+W5hzOVijq22OFYjlWvx9AwqhdxDWBr0cqv0mmw0uJIy0NYV1UOZi8s3hWWtAMvTVPi+i7PwNnQPJ2zXihcVhmYPbKsek42grY4NIMN8HOsXnt5j9m8eC47ngmm0VmtUWFnYoHyoEOgWCRNZHDRMZdekGkPJGthu/ZH9RQN57UKkp8G0ZLJhEgCmgCHUVwX2DVoCfvQfJ1tgs4oDEfC8cZfWiHHKnCM5FgZmIXLdxpysIysPIojcd+e0U6sN5kv02HWwiE3GFlhNmvDVC7sRaPRsGS0NJJraflgkGBOUxTpChQ2xiWjas2YEc/5KNQ04TQ5X4cpWaOhJ7/dsGQuBINF3lcWT6u1gA1obcCaiefCpxarVC1cQUt5kCHfFe3lArEogwJmL9xGwwCGzs6VeoO4vrZ70k2HR2I+atXT+gm2r6UhaGKteWWzgwjnd5VQNrCZEUtk6QYuRxKfn56mlL1AWIH9ofgYQ+heV2TVFwGncCJgcBsiVpRhaZ6FATDIkYT5l5yV8oUzaQXWxQcBe526LFayrHCx5HfZsee6DTfiWGMRSw2mrUYyjDGKQktdPIXGai0P2RC+pbRm5SHaCrGnprnj3EIZSyHTIrmABh6W0FryFegvF9rmF7ILgdQsTuD2Yk62HbtJZuFY4xLB0B4hPQAizqdZxGKuq0z5g/CwW5Ig2xtjMZxxnl06mEjmiHFDTDt7JywqEhjOCfVs7YxMWFCcgMyN9A+U9nzjefSSSpfdjefc9IExiumiF7N2aWLiT2LpVlniZK7rxYZ9iGyDTdTW2DCSG4xkyJRFkRZtYRxlBcpcYGmoUVkNRTSc5u+QbCceq8bBCLiBL4P5BpONrUCfF3a6AgupaEFgdzthOVNmWi8wkkFU43FPYGOjKFV4bQkB9JclUBB5ZmvwHqw2lettisioAzTlIoaPA1i8poBx8goso4IDH+u33AkFVFSJMFccm75Q8mnKsajSgczu2rFerJBGTHJYjuOdVBmXUO/PSLvq9caBoy1VwlLOasRqO9g25gdJ+Q9Z7GYSlULlZrXbnvzkvSqLrRstA18/nBmOa2QehTqCSS78iGlRwiRi9dSDjoftLiWOqHPGuHGqeLEbKONiY/mNYq62IE8/GPaEy7TIRbHJuSyE76aiXOyGuWFH0bmqqlvoWFUggypG4QrYxg33PUywz7D+cQGX6BXNceMHD8kxhtZglcL11qbexI+XERYSM1EmPE9FZi55QpNbMFdbAWOuNZaFuUZsP1jT3YN2Kk5qF9ayEUrBahemDa5KMc+iwm2B09H9gTlXxAUj6FcVpqoxt3IwryqSjY3fZhid28ZQgtX5aQt8T6u2tzUsc24JjmVgvQ3vqdwT9JZzw4Kwg+XYk9jc9MkCtwyKUpW6BWNTxyha0gt4xyBS7tqwyRfRxvDdgO0EsOsjSHZs8d1iKEa1wy0YuFdNvA0PoBPTWhspAPhpk80exVt99zpzAlisfJS0fulQiLXLLQQTznvOG+wDap5t8+dnbL1oY0hE298K79hnCCMS6B1Y4siBl8D9eKQPfMfxA7ROSRhGNw62JbuX4xZT9T70nQfZZGsA7xu7bc9rZx/vetrKZykVjeMiNtc1Q70ntwSo7VuS3pZGcZ6kI2JByvZ5Vh4V57xx4OtTke3mrdd2E5XqQ1hnOVW1iudHwjcpF+yL9cDkHdw2TbnAuFg3vXaSCFTJh7DSciFEf5zwefFEGRVyZXQFIaWV5M2rpnQfyy0Klj8QhM1no7SzkgtNjrcDrF3yAYLurGNqXPLBlXjGAodcGEVuH2NLYLTtLi6hvGwDx0Cw3XziS1vbqzEMCEYsJir1DSMpxtYoLwPbVpOq97bZdQx+n8hDrVrDkCVVWQl+Ase1UC2g4v3G6f00cN5ma3LuQ7K9pAcvelVV+LOgbYL2wb9t/K8sMDaQFmBS7VHnvsRGcN/a1DSudB1tVCNVQXa+yW00CrUkqY3LZt4Fxv6w6TgaWRbJcqwkVrlqmT6+ElVFfCxxSvxZyg6urQBfE/Xw5f8DLBBGqwpoGMm4NJJQUByViWF92a2zB3XMWhXwkje4HJVysR5bbYA9uEXTSwcD52oQJFpD9FWB5LQX/LAhSA7g1hnUMbNwy02n1UJFhYtjo3Ltwy0ms2N0WozkWwE27QBVuXcQt5iKHMN5iVfIBZFWnNyXW0xFjj2IkTQIdgX56v7cYipy7C9cHRdgAYMjce3TLSb74dw0cxrJAi6gFt08369bMLcZDEPlm7lwOYpYB/hdCuoYU03Bw0huaibh7kh52G1U+3eLiSAYTlEDvvOsRhl2hXQ5ZncxrAP9BpHNp8hFIfEohoFK4wW2np/b0k2HcYuJ1HSwzIZNjZNmrwA4f3vA37cyOXZ+/gLX/urAItfh3CoEq+EGrrXDNhUfA6vIMSIQcMGKeDsKlrS+dkUSbESsI/yGrdEx/FmK3NZ1Mq7Du8VEDFw13MCltkc7Yz3Sb3Dbj10NDI9iL+KFvwwn6CLfUUS6GlgXI/mgor50j5FbmahjlAzokLDb7eLPUnhbF5fj8dwCsK6mdAPnDbAc/x4VCx1ThBs4b2fLkRz9L8YwOIYbePbu+thEGZjm2CO055E8EZfBMYzkLzHfTgKmOZZu4BDGkp+uHhwszSQeSfwyhDVcb3fdfUiwx2sBjf6BG/jLdff6uHVLA6Mw8M81haJ/oEs2fXFSLFqgHq8FdVOe7ePJ/8Y0u3stCSN5YrcAQXLs+vfub+qPJNWxb+AVSnHs5dQ8uezv6RfVr99Zev06NYqsFwT7/X2CmMp5+fXr18ue/3qJ/ejktfR/WP8FOoK2QLx2JrUAAAAASUVORK5CYII=" - }, - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.08988904953", - "Connection": "Keep-Alive", - "X-Request-Count": "4474", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:14f210ffec43%0Db782b50eefc7?from_pullrequest_id=1\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:14f210ffec43%0Db782b50eefc7?from_pullrequest_id=1\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 1, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T13:19:50.212631+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \" Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"14f210ffec43\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/14f210ffec43\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/14f210ffec43\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T13:19:51.024416+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.101540088654", - "Connection": "Keep-Alive", - "X-Request-Count": "2366", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:14f210ffec43%0Db782b50eefc7?from_pullrequest_id=1\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:14f210ffec43%0Db782b50eefc7?from_pullrequest_id=1\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 1, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T13:19:50.212631+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"14f210ffec43\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/14f210ffec43\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/14f210ffec43\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T13:19:51.024416+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/1/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0688149929047", - "Connection": "Keep-Alive", - "X-Request-Count": "3545", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144756625\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1/_/diff#comment-144756625\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 1, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T13:19:51.022428+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T13:19:51.024416+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144756625}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/1/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.056293964386", - "Connection": "Keep-Alive", - "X-Request-Count": "3646", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/1/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0746660232544", - "Connection": "Keep-Alive", - "X-Request-Count": "4888", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144756625\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1/_/diff#comment-144756625\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 1, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T13:19:51.022428+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T13:19:51.024416+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144756625}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "body": "{\"content\":{\"raw\":\"decap-cms/pending_publish\"}}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/1/comments", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144756630", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0759518146515", - "Connection": "Keep-Alive", - "X-Request-Count": "4609", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1571" - }, - "response": "{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144756630\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1/_/diff#comment-144756630\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 1, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_publish\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_publish
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T13:19:59.896749+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T13:19:59.899560+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144756630}", - "status": 201 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.203539848328", - "Connection": "Keep-Alive", - "X-Request-Count": "3770", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:14f210ffec43%0Db782b50eefc7?from_pullrequest_id=1\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:14f210ffec43%0Db782b50eefc7?from_pullrequest_id=1\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 1, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T13:19:50.212631+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"14f210ffec43\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/14f210ffec43\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/14f210ffec43\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 2, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T13:19:59.899560+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/1/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.169588088989", - "Connection": "Keep-Alive", - "X-Request-Count": "4324", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3176" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144756625\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1/_/diff#comment-144756625\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 1, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T13:19:51.022428+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T13:19:51.024416+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144756625}, {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144756630\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1/_/diff#comment-144756630\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 1, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_publish\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_publish
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T13:19:59.896749+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T13:19:59.899560+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144756630}], \"page\": 1, \"size\": 2}", - "status": 200 - }, - { - "body": "{\"message\":\"Automatically generated. Merged on Decap CMS.\",\"close_source_branch\":true,\"merge_strategy\":\"merge_commit\"}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/1/merge", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "1.24023914337", - "Connection": "Keep-Alive", - "X-Request-Count": "3245", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "7910" - }, - "response": "{\"rendered\": {\"description\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"title\": {\"raw\": \"Create Post “1970-01-01-first-title”\", \"markup\": \"markdown\", \"html\": \"Create Post “1970-01-01-first-title”
\", \"type\": \"rendered\"}}, \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:169e7f31787a%0Db782b50eefc7?from_pullrequest_id=1\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:169e7f31787a%0Db782b50eefc7?from_pullrequest_id=1\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/statuses\"}}, \"close_source_branch\": true, \"reviewers\": [], \"created_on\": \"2020-04-12T13:19:50.212631+00:00\", \"id\": 1, \"closed_on\": \"2020-04-12T13:20:04.323238+00:00\", \"title\": \"Create Post “1970-01-01-first-title”\", \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"branch\": {\"name\": \"master\"}}, \"comment_count\": 2, \"source\": {\"commit\": {\"hash\": \"14f210ffec43\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/14f210ffec43\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/14f210ffec43\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"state\": \"MERGED\", \"type\": \"pullrequest\", \"description\": \"Automatically generated by Decap CMS\", \"reason\": \"\", \"task_count\": 0, \"merge_commit\": {\"hash\": \"169e7f31787acb9c6ef98b47627546c6fb0ffa17\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/169e7f31787acb9c6ef98b47627546c6fb0ffa17\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/169e7f31787acb9c6ef98b47627546c6fb0ffa17\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"summary\": {\"raw\": \"Automatically generated. Merged on Decap CMS.\\n\", \"markup\": \"markdown\", \"html\": \" Automatically generated. Merged on Decap CMS.
\", \"type\": \"rendered\"}, \"date\": \"2020-04-12T13:20:03+00:00\", \"message\": \"Automatically generated. Merged on Decap CMS.\\n\", \"type\": \"commit\"}, \"closed_by\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"participants\": [{\"role\": \"PARTICIPANT\", \"participated_on\": \"2020-04-12T13:19:59.899560+00:00\", \"type\": \"participant\", \"approved\": false, \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}], \"updated_on\": \"2020-04-12T13:20:04.323255+00:00\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0526509284973", - "Connection": "Keep-Alive", - "X-Request-Count": "1131", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0794198513031", - "Connection": "Keep-Alive", - "X-Request-Count": "4485", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3867" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"169e7f31787acb9c6ef98b47627546c6fb0ffa17\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/169e7f31787acb9c6ef98b47627546c6fb0ffa17\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/169e7f31787acb9c6ef98b47627546c6fb0ffa17/comments\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/169e7f31787acb9c6ef98b47627546c6fb0ffa17\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/169e7f31787acb9c6ef98b47627546c6fb0ffa17\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/169e7f31787acb9c6ef98b47627546c6fb0ffa17/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/169e7f31787acb9c6ef98b47627546c6fb0ffa17/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}, {\"hash\": \"14f210ffec430f8850dab40f2c8af842a599a883\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/14f210ffec430f8850dab40f2c8af842a599a883\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/14f210ffec430f8850dab40f2c8af842a599a883\"}}}], \"date\": \"2020-04-12T13:20:03+00:00\", \"message\": \"Automatically generated. Merged on Decap CMS.\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/169e7f31787acb9c6ef98b47627546c6fb0ffa17/static/media?max_depth=1&pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0538940429688", - "Connection": "Keep-Alive", - "X-Request-Count": "1267", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1167" - }, - "response": "{\"pagelen\":100,\"values\":[{\"mimetype\":\"image/png\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/169e7f31787acb9c6ef98b47627546c6fb0ffa17/static/media/netlify.png\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/169e7f31787acb9c6ef98b47627546c6fb0ffa17/static/media/netlify.png?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/169e7f31787acb9c6ef98b47627546c6fb0ffa17/static/media/netlify.png\"}},\"path\":\"static/media/netlify.png\",\"commit\":{\"type\":\"commit\",\"hash\":\"169e7f31787acb9c6ef98b47627546c6fb0ffa17\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/169e7f31787acb9c6ef98b47627546c6fb0ffa17\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/169e7f31787acb9c6ef98b47627546c6fb0ffa17\"}}},\"attributes\":[\"binary\"],\"type\":\"commit_file\",\"size\":3470}],\"page\":1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0584540367126", - "Connection": "Keep-Alive", - "X-Request-Count": "2015", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3867" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"169e7f31787acb9c6ef98b47627546c6fb0ffa17\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/169e7f31787acb9c6ef98b47627546c6fb0ffa17\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/169e7f31787acb9c6ef98b47627546c6fb0ffa17/comments\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/169e7f31787acb9c6ef98b47627546c6fb0ffa17\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/169e7f31787acb9c6ef98b47627546c6fb0ffa17\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/169e7f31787acb9c6ef98b47627546c6fb0ffa17/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/169e7f31787acb9c6ef98b47627546c6fb0ffa17/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}, {\"hash\": \"14f210ffec430f8850dab40f2c8af842a599a883\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/14f210ffec430f8850dab40f2c8af842a599a883\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/14f210ffec430f8850dab40f2c8af842a599a883\"}}}], \"date\": \"2020-04-12T13:20:03+00:00\", \"message\": \"Automatically generated. Merged on Decap CMS.\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/169e7f31787acb9c6ef98b47627546c6fb0ffa17/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0463571548462", - "Connection": "Keep-Alive", - "X-Request-Count": "2601", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "180" - }, - "response": "---\ntemplate: post\ntitle: first title\nimage: /media/netlify.png\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0533862113953", - "Connection": "Keep-Alive", - "X-Request-Count": "1289", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0589561462402", - "Connection": "Keep-Alive", - "X-Request-Count": "3918", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3867" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"169e7f31787acb9c6ef98b47627546c6fb0ffa17\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/169e7f31787acb9c6ef98b47627546c6fb0ffa17\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/169e7f31787acb9c6ef98b47627546c6fb0ffa17/comments\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/169e7f31787acb9c6ef98b47627546c6fb0ffa17\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/169e7f31787acb9c6ef98b47627546c6fb0ffa17\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/169e7f31787acb9c6ef98b47627546c6fb0ffa17/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/169e7f31787acb9c6ef98b47627546c6fb0ffa17/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}, {\"hash\": \"14f210ffec430f8850dab40f2c8af842a599a883\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/14f210ffec430f8850dab40f2c8af842a599a883\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/14f210ffec430f8850dab40f2c8af842a599a883\"}}}], \"date\": \"2020-04-12T13:20:03+00:00\", \"message\": \"Automatically generated. Merged on Decap CMS.\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/169e7f31787acb9c6ef98b47627546c6fb0ffa17/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0488810539246", - "Connection": "Keep-Alive", - "X-Request-Count": "4149", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "180" - }, - "response": "---\ntemplate: post\ntitle: first title\nimage: /media/netlify.png\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0658609867096", - "Connection": "Keep-Alive", - "X-Request-Count": "4847", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/diff/cms/posts/1970-01-01-first-title..master?binary=false", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "must-revalidate, max-age=0", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.112940073013", - "Connection": "Keep-Alive", - "X-Request-Count": "4017", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "606" - }, - "response": "diff --git a/content/posts/1970-01-01-first-title.md b/content/posts/1970-01-01-first-title.md\nnew file mode 100644\nindex 0000000..5712f24\n--- /dev/null\n+++ b/content/posts/1970-01-01-first-title.md\n@@ -0,0 +1,11 @@\n+---\n+template: post\n+title: first title\n+image: /media/netlify.png\n+date: 1970-01-01T00:00:00.000Z\n+description: first description\n+category: first category\n+tags:\n+ - tag1\n+---\n+first body\n\\ No newline at end of file\ndiff --git a/static/media/netlify.png b/static/media/netlify.png\nnew file mode 100644\nindex 0000000..13692e6\nBinary files /dev/null and b/static/media/netlify.png differ\n", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/1/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0869829654694", - "Connection": "Keep-Alive", - "X-Request-Count": "4147", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144756625\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1/_/diff#comment-144756625\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 1, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \" decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T13:19:51.022428+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T13:19:51.024416+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144756625}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0653989315033", - "Connection": "Keep-Alive", - "X-Request-Count": "4480", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3726" - }, - "response": "{\"name\": \"cms/posts/1970-01-01-first-title\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/cms/posts/1970-01-01-first-title\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/cms/posts/1970-01-01-first-title\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"14f210ffec430f8850dab40f2c8af842a599a883\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/14f210ffec430f8850dab40f2c8af842a599a883\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/14f210ffec430f8850dab40f2c8af842a599a883/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/14f210ffec430f8850dab40f2c8af842a599a883\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/14f210ffec430f8850dab40f2c8af842a599a883\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/14f210ffec430f8850dab40f2c8af842a599a883\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/14f210ffec430f8850dab40f2c8af842a599a883/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/14f210ffec430f8850dab40f2c8af842a599a883/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T13:19:48+00:00\", \"message\": \"Create Post “1970-01-01-first-title”\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/14f210ffec430f8850dab40f2c8af842a599a883/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.044618844986", - "Connection": "Keep-Alive", - "X-Request-Count": "2762", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "180" - }, - "response": "---\ntemplate: post\ntitle: first title\nimage: /media/netlify.png\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.054624080658", - "Connection": "Keep-Alive", - "X-Request-Count": "999", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3726" - }, - "response": "{\"name\": \"cms/posts/1970-01-01-first-title\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/cms/posts/1970-01-01-first-title\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/cms/posts/1970-01-01-first-title\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/cms/posts/1970-01-01-first-title\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"14f210ffec430f8850dab40f2c8af842a599a883\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/14f210ffec430f8850dab40f2c8af842a599a883\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/14f210ffec430f8850dab40f2c8af842a599a883/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/14f210ffec430f8850dab40f2c8af842a599a883\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/14f210ffec430f8850dab40f2c8af842a599a883\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/14f210ffec430f8850dab40f2c8af842a599a883\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/14f210ffec430f8850dab40f2c8af842a599a883/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/14f210ffec430f8850dab40f2c8af842a599a883/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}], \"date\": \"2020-04-12T13:19:48+00:00\", \"message\": \"Create Post “1970-01-01-first-title”\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/14f210ffec430f8850dab40f2c8af842a599a883/static/media/netlify.png", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "image/png", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0398240089417", - "Connection": "Keep-Alive", - "X-Request-Count": "963", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "3470" - }, - "response": { - "encoding": "base64", - "content": "iVBORw0KGgoAAAANSUhEUgAAAJcAAACXCAMAAAAvQTlLAAAAwFBMVEX///85rbswtrpAp71DpL03sLs8q7xGob4tubkzs7o+qLwqvLknv7gkwrgpvbhIn75Mm7/x+vrs9fhktcfn9/bg8PMtp7lSr8IWw7U7yL3Y7vAAq7JSzMM+w75MwMGj2dxmv8iLx9O73ORcrMRorMeJ2tJr1MlTx8N8z8+45uWs4OBQu8HH5ulTuMMXqbaW0Ndxvsuq1t4jnrd6ss2TwNUwj7ii4tzP8Ox00syR19ZkxseByNCezdnP5Ox2tsyDv9FhQXEFAAAMiUlEQVR4nO2ci1biyBaGDTcBUaxAEjuoQLQHEQhJ2j7TCLTv/1anau8kdU3wwsW1zvlnVg9UKlVf/r1rVyFjn539X6cSOTWASf2f/9z+87N/agxF5OcN6uf3Mu32JtPtqVEE9X/ccP34NrEktzeibr9JKCW3vo9j1K1L+g/X5bdwrP/jkkqgYjq9Y/3bSxSz7PImfXN5e2Kw/qWoG+H1ScFyt3T9PCXWj0KsU/pV4tblf06HRX5cdoqw/kClOIlnZNKhKovi/O4EYKQDMlsGUezfdTpHL7D9SSeXhoX1/olemhzZMXLXESVRdS7/ZV3+hSt3R3VMdEsTli5yi++OmWOKW4omYNEqfXd1PMdK3ep0IIq+wHkkx8gVVeeqCOsJ+qToV6CjONaf4GQFYHdiFNOex3CM3F1dlIFNgV3Curg4fI71JxdUV1dFaH+g16tAdcVuOLRj5O4CpZPBqyuY/zlnSrEO7Ri6JYMBW4aHUdSoDu3Y08WVESzDm0CvPzkU731gx/zVnTCVxgaeTDWvmJrN1QG5aIY9TwrJnqHDHTNKhrpoUq75Qbmopk8XYoRyrFe4+qQ6hW41m4eJI3ld8cx1VtrMVxcdn12am6GoDoJl39ORX+f5M5PpHxUM8ofcFWHdA7WzXyxynw7+zMn8V2n69BhhhqKCffNpv9Hs3/PxVzx/+8MJi9pk9Tx9XmEUC7GasCgmzfs91jEiYLFwTvmV6eSCW0g7FlGly5FZvjfH+rNKpSLN0RzyPBGnWWVJ35SZmJifdpOONNuTY+S+UtHA7p98wwMwIBMTu4E9yZxxVfbjWB+xNLLm/VR78FcTURp8BvOMA+0jx0iOZSBbKU8+L+aC5bhKx/m6Y30RS+VqqsWSFHNBdXvKBvqqY5JbpjRT+j8VcrE1TF7zYb7mWL/V0rgoGYd71e5Y3etM7D6W9n0+TKvyBcfIfUsHkz0zPMuzTFYBrAHzxx9kVFSfd6w/a6FK0AzV4uzsXx7O/AbWHgw4FgX7pGMkwzKCpWRP5nudIUY77w0Bz5YjDjqofMqx/n1LkIkM2KbCLVPhwEHfNIWeS9b0yqFardnwc1iz1m4uKmFF+pTzdSgeOAZ5N8DnVIPZ/JPpZbcUVcxs+enCTot5RdihyHAmdLNTrMFs/YVj2FwFM3Jhfk3n09VMaBQPHGgaY/UHmFbCpu8sP27bcvAOMjwM6u3C3P5qNkTGUWvQGvHjG5mPBuFHThc23EtmGpfGBoc93xhgIZz51EMpxqNBnWr2bsf69boN8xm5RDKM4szIVRnM9ANHLn9No1FHvdMxsqiHa3i1DAvIMjYYcWjGYpqtzAk+X8MgKdfoXY7ZrGsIATobFXIBG6SNOYogluUj7eOsM2wNOBSbDMOz0y0QPINfL+OCo97ZazEUaCC74a+BSsCiWux0zF6Eqbnwdhi2CtEGEKNhixFkxQ1etipSN+W5hzOVijq22OFYjlWvx9AwqhdxDWBr0cqv0mmw0uJIy0NYV1UOZi8s3hWWtAMvTVPi+i7PwNnQPJ2zXihcVhmYPbKsek42grY4NIMN8HOsXnt5j9m8eC47ngmm0VmtUWFnYoHyoEOgWCRNZHDRMZdekGkPJGthu/ZH9RQN57UKkp8G0ZLJhEgCmgCHUVwX2DVoCfvQfJ1tgs4oDEfC8cZfWiHHKnCM5FgZmIXLdxpysIysPIojcd+e0U6sN5kv02HWwiE3GFlhNmvDVC7sRaPRsGS0NJJraflgkGBOUxTpChQ2xiWjas2YEc/5KNQ04TQ5X4cpWaOhJ7/dsGQuBINF3lcWT6u1gA1obcCaiefCpxarVC1cQUt5kCHfFe3lArEogwJmL9xGwwCGzs6VeoO4vrZ70k2HR2I+atXT+gm2r6UhaGKteWWzgwjnd5VQNrCZEUtk6QYuRxKfn56mlL1AWIH9ofgYQ+heV2TVFwGncCJgcBsiVpRhaZ6FATDIkYT5l5yV8oUzaQXWxQcBe526LFayrHCx5HfZsee6DTfiWGMRSw2mrUYyjDGKQktdPIXGai0P2RC+pbRm5SHaCrGnprnj3EIZSyHTIrmABh6W0FryFegvF9rmF7ILgdQsTuD2Yk62HbtJZuFY4xLB0B4hPQAizqdZxGKuq0z5g/CwW5Ig2xtjMZxxnl06mEjmiHFDTDt7JywqEhjOCfVs7YxMWFCcgMyN9A+U9nzjefSSSpfdjefc9IExiumiF7N2aWLiT2LpVlniZK7rxYZ9iGyDTdTW2DCSG4xkyJRFkRZtYRxlBcpcYGmoUVkNRTSc5u+QbCceq8bBCLiBL4P5BpONrUCfF3a6AgupaEFgdzthOVNmWi8wkkFU43FPYGOjKFV4bQkB9JclUBB5ZmvwHqw2lettisioAzTlIoaPA1i8poBx8goso4IDH+u33AkFVFSJMFccm75Q8mnKsajSgczu2rFerJBGTHJYjuOdVBmXUO/PSLvq9caBoy1VwlLOasRqO9g25gdJ+Q9Z7GYSlULlZrXbnvzkvSqLrRstA18/nBmOa2QehTqCSS78iGlRwiRi9dSDjoftLiWOqHPGuHGqeLEbKONiY/mNYq62IE8/GPaEy7TIRbHJuSyE76aiXOyGuWFH0bmqqlvoWFUggypG4QrYxg33PUywz7D+cQGX6BXNceMHD8kxhtZglcL11qbexI+XERYSM1EmPE9FZi55QpNbMFdbAWOuNZaFuUZsP1jT3YN2Kk5qF9ayEUrBahemDa5KMc+iwm2B09H9gTlXxAUj6FcVpqoxt3IwryqSjY3fZhid28ZQgtX5aQt8T6u2tzUsc24JjmVgvQ3vqdwT9JZzw4Kwg+XYk9jc9MkCtwyKUpW6BWNTxyha0gt4xyBS7tqwyRfRxvDdgO0EsOsjSHZs8d1iKEa1wy0YuFdNvA0PoBPTWhspAPhpk80exVt99zpzAlisfJS0fulQiLXLLQQTznvOG+wDap5t8+dnbL1oY0hE298K79hnCCMS6B1Y4siBl8D9eKQPfMfxA7ROSRhGNw62JbuX4xZT9T70nQfZZGsA7xu7bc9rZx/vetrKZykVjeMiNtc1Q70ntwSo7VuS3pZGcZ6kI2JByvZ5Vh4V57xx4OtTke3mrdd2E5XqQ1hnOVW1iudHwjcpF+yL9cDkHdw2TbnAuFg3vXaSCFTJh7DSciFEf5zwefFEGRVyZXQFIaWV5M2rpnQfyy0Klj8QhM1no7SzkgtNjrcDrF3yAYLurGNqXPLBlXjGAodcGEVuH2NLYLTtLi6hvGwDx0Cw3XziS1vbqzEMCEYsJir1DSMpxtYoLwPbVpOq97bZdQx+n8hDrVrDkCVVWQl+Ase1UC2g4v3G6f00cN5ma3LuQ7K9pAcvelVV+LOgbYL2wb9t/K8sMDaQFmBS7VHnvsRGcN/a1DSudB1tVCNVQXa+yW00CrUkqY3LZt4Fxv6w6TgaWRbJcqwkVrlqmT6+ElVFfCxxSvxZyg6urQBfE/Xw5f8DLBBGqwpoGMm4NJJQUByViWF92a2zB3XMWhXwkje4HJVysR5bbYA9uEXTSwcD52oQJFpD9FWB5LQX/LAhSA7g1hnUMbNwy02n1UJFhYtjo3Ltwy0ms2N0WozkWwE27QBVuXcQt5iKHMN5iVfIBZFWnNyXW0xFjj2IkTQIdgX56v7cYipy7C9cHRdgAYMjce3TLSb74dw0cxrJAi6gFt08369bMLcZDEPlm7lwOYpYB/hdCuoYU03Bw0huaibh7kh52G1U+3eLiSAYTlEDvvOsRhl2hXQ5ZncxrAP9BpHNp8hFIfEohoFK4wW2np/b0k2HcYuJ1HSwzIZNjZNmrwA4f3vA37cyOXZ+/gLX/urAItfh3CoEq+EGrrXDNhUfA6vIMSIQcMGKeDsKlrS+dkUSbESsI/yGrdEx/FmK3NZ1Mq7Du8VEDFw13MCltkc7Yz3Sb3Dbj10NDI9iL+KFvwwn6CLfUUS6GlgXI/mgor50j5FbmahjlAzokLDb7eLPUnhbF5fj8dwCsK6mdAPnDbAc/x4VCx1ThBs4b2fLkRz9L8YwOIYbePbu+thEGZjm2CO055E8EZfBMYzkLzHfTgKmOZZu4BDGkp+uHhwszSQeSfwyhDVcb3fdfUiwx2sBjf6BG/jLdff6uHVLA6Mw8M81haJ/oEs2fXFSLFqgHq8FdVOe7ePJ/8Y0u3stCSN5YrcAQXLs+vfub+qPJNWxb+AVSnHs5dQ8uezv6RfVr99Zev06NYqsFwT7/X2CmMp5+fXr18ue/3qJ/ejktfR/WP8FOoK2QLx2JrUAAAAASUVORK5CYII=" - }, - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.08988904953", - "Connection": "Keep-Alive", - "X-Request-Count": "4474", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:14f210ffec43%0Db782b50eefc7?from_pullrequest_id=1\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:14f210ffec43%0Db782b50eefc7?from_pullrequest_id=1\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 1, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T13:19:50.212631+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \" Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"14f210ffec43\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/14f210ffec43\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/14f210ffec43\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T13:19:51.024416+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1141", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.101540088654", - "Connection": "Keep-Alive", - "X-Request-Count": "2366", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:14f210ffec43%0Db782b50eefc7?from_pullrequest_id=1\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:14f210ffec43%0Db782b50eefc7?from_pullrequest_id=1\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 1, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T13:19:50.212631+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"14f210ffec43\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/14f210ffec43\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/14f210ffec43\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 1, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T13:19:51.024416+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/1/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0688149929047", - "Connection": "Keep-Alive", - "X-Request-Count": "3545", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144756625\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1/_/diff#comment-144756625\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 1, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T13:19:51.022428+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T13:19:51.024416+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144756625}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/1/statuses?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.056293964386", - "Connection": "Keep-Alive", - "X-Request-Count": "3646", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "52" - }, - "response": "{\"pagelen\": 100, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/1/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0746660232544", - "Connection": "Keep-Alive", - "X-Request-Count": "4888", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1603" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144756625\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1/_/diff#comment-144756625\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 1, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T13:19:51.022428+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T13:19:51.024416+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144756625}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "body": "{\"content\":{\"raw\":\"decap-cms/pending_publish\"}}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/1/comments", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Location": "https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144756630", - "X-Served-By": "app-1130", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0759518146515", - "Connection": "Keep-Alive", - "X-Request-Count": "4609", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1571" - }, - "response": "{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144756630\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1/_/diff#comment-144756630\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 1, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_publish\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_publish
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T13:19:59.896749+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T13:19:59.899560+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144756630}", - "status": 201 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.203539848328", - "Connection": "Keep-Alive", - "X-Request-Count": "3770", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "4933" - }, - "response": "{\"pagelen\": 50, \"values\": [{\"description\": \"Automatically generated by Decap CMS\", \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:14f210ffec43%0Db782b50eefc7?from_pullrequest_id=1\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:14f210ffec43%0Db782b50eefc7?from_pullrequest_id=1\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/statuses\"}}, \"title\": \"Create Post “1970-01-01-first-title”\", \"close_source_branch\": true, \"type\": \"pullrequest\", \"id\": 1, \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"branch\": {\"name\": \"master\"}}, \"created_on\": \"2020-04-12T13:19:50.212631+00:00\", \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"source\": {\"commit\": {\"hash\": \"14f210ffec43\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/14f210ffec43\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/14f210ffec43\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"comment_count\": 2, \"state\": \"OPEN\", \"task_count\": 0, \"reason\": \"\", \"updated_on\": \"2020-04-12T13:19:59.899560+00:00\", \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"merge_commit\": null, \"closed_by\": null}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests/1/comments?pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.169588088989", - "Connection": "Keep-Alive", - "X-Request-Count": "4324", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3176" - }, - "response": "{\"pagelen\": 100, \"values\": [{\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144756625\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1/_/diff#comment-144756625\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 1, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/draft\", \"markup\": \"markdown\", \"html\": \"decap-cms/draft
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T13:19:51.022428+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T13:19:51.024416+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144756625}, {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments/144756630\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1/_/diff#comment-144756630\"}}, \"deleted\": false, \"pullrequest\": {\"type\": \"pullrequest\", \"id\": 1, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}}, \"title\": \"Create Post “1970-01-01-first-title”\"}, \"content\": {\"raw\": \"decap-cms/pending_publish\", \"markup\": \"markdown\", \"html\": \"decap-cms/pending_publish
\", \"type\": \"rendered\"}, \"created_on\": \"2020-04-12T13:19:59.896749+00:00\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T13:19:59.899560+00:00\", \"type\": \"pullrequest_comment\", \"id\": 144756630}], \"page\": 1, \"size\": 2}", - "status": 200 - }, - { - "body": "{\"message\":\"Automatically generated. Merged on Decap CMS.\",\"close_source_branch\":true,\"merge_strategy\":\"merge_commit\"}", - "method": "POST", - "url": "/2.0/repositories/owner/repo/pullrequests/1/merge", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest:write", - "X-Credential-Type": "oauth2", - "X-Render-Time": "1.24023914337", - "Connection": "Keep-Alive", - "X-Request-Count": "3245", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "7910" - }, - "response": "{\"rendered\": {\"description\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"title\": {\"raw\": \"Create Post “1970-01-01-first-title”\", \"markup\": \"markdown\", \"html\": \"Create Post “1970-01-01-first-title”
\", \"type\": \"rendered\"}}, \"links\": {\"decline\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/decline\"}, \"diffstat\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diffstat/owner/repo:169e7f31787a%0Db782b50eefc7?from_pullrequest_id=1\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/commits\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/comments\"}, \"merge\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/merge\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/pull-requests/1\"}, \"activity\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/activity\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/owner/repo:169e7f31787a%0Db782b50eefc7?from_pullrequest_id=1\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests/1/statuses\"}}, \"close_source_branch\": true, \"reviewers\": [], \"created_on\": \"2020-04-12T13:19:50.212631+00:00\", \"id\": 1, \"closed_on\": \"2020-04-12T13:20:04.323238+00:00\", \"title\": \"Create Post “1970-01-01-first-title”\", \"destination\": {\"commit\": {\"hash\": \"b782b50eefc7\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"branch\": {\"name\": \"master\"}}, \"comment_count\": 2, \"source\": {\"commit\": {\"hash\": \"14f210ffec43\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/14f210ffec43\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/14f210ffec43\"}}}, \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"branch\": {\"name\": \"cms/posts/1970-01-01-first-title\"}}, \"state\": \"MERGED\", \"type\": \"pullrequest\", \"description\": \"Automatically generated by Decap CMS\", \"reason\": \"\", \"task_count\": 0, \"merge_commit\": {\"hash\": \"169e7f31787acb9c6ef98b47627546c6fb0ffa17\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/169e7f31787acb9c6ef98b47627546c6fb0ffa17\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/169e7f31787acb9c6ef98b47627546c6fb0ffa17\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"summary\": {\"raw\": \"Automatically generated. Merged on Decap CMS.\\n\", \"markup\": \"markdown\", \"html\": \" Automatically generated. Merged on Decap CMS.
\", \"type\": \"rendered\"}, \"date\": \"2020-04-12T13:20:03+00:00\", \"message\": \"Automatically generated. Merged on Decap CMS.\\n\", \"type\": \"commit\"}, \"closed_by\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"author\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"summary\": {\"raw\": \"Automatically generated by Decap CMS\", \"markup\": \"markdown\", \"html\": \"Automatically generated by Decap CMS
\", \"type\": \"rendered\"}, \"participants\": [{\"role\": \"PARTICIPANT\", \"participated_on\": \"2020-04-12T13:19:59.899560+00:00\", \"type\": \"participant\", \"approved\": false, \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}], \"updated_on\": \"2020-04-12T13:20:04.323255+00:00\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0526509284973", - "Connection": "Keep-Alive", - "X-Request-Count": "1131", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0794198513031", - "Connection": "Keep-Alive", - "X-Request-Count": "4485", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3867" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"169e7f31787acb9c6ef98b47627546c6fb0ffa17\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/169e7f31787acb9c6ef98b47627546c6fb0ffa17\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/169e7f31787acb9c6ef98b47627546c6fb0ffa17/comments\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/169e7f31787acb9c6ef98b47627546c6fb0ffa17\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/169e7f31787acb9c6ef98b47627546c6fb0ffa17\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/169e7f31787acb9c6ef98b47627546c6fb0ffa17/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/169e7f31787acb9c6ef98b47627546c6fb0ffa17/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah\", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}, {\"hash\": \"14f210ffec430f8850dab40f2c8af842a599a883\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/14f210ffec430f8850dab40f2c8af842a599a883\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/14f210ffec430f8850dab40f2c8af842a599a883\"}}}], \"date\": \"2020-04-12T13:20:03+00:00\", \"message\": \"Automatically generated. Merged on Decap CMS.\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/169e7f31787acb9c6ef98b47627546c6fb0ffa17/static/media?max_depth=1&pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0538940429688", - "Connection": "Keep-Alive", - "X-Request-Count": "1267", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1167" - }, - "response": "{\"pagelen\":100,\"values\":[{\"mimetype\":\"image/png\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/169e7f31787acb9c6ef98b47627546c6fb0ffa17/static/media/netlify.png\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/169e7f31787acb9c6ef98b47627546c6fb0ffa17/static/media/netlify.png?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/169e7f31787acb9c6ef98b47627546c6fb0ffa17/static/media/netlify.png\"}},\"path\":\"static/media/netlify.png\",\"commit\":{\"type\":\"commit\",\"hash\":\"169e7f31787acb9c6ef98b47627546c6fb0ffa17\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/169e7f31787acb9c6ef98b47627546c6fb0ffa17\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/169e7f31787acb9c6ef98b47627546c6fb0ffa17\"}}},\"attributes\":[\"binary\"],\"type\":\"commit_file\",\"size\":3470}],\"page\":1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0584540367126", - "Connection": "Keep-Alive", - "X-Request-Count": "2015", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3867" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"169e7f31787acb9c6ef98b47627546c6fb0ffa17\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/169e7f31787acb9c6ef98b47627546c6fb0ffa17\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/169e7f31787acb9c6ef98b47627546c6fb0ffa17/comments\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/169e7f31787acb9c6ef98b47627546c6fb0ffa17\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/169e7f31787acb9c6ef98b47627546c6fb0ffa17\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/169e7f31787acb9c6ef98b47627546c6fb0ffa17/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/169e7f31787acb9c6ef98b47627546c6fb0ffa17/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}, {\"hash\": \"14f210ffec430f8850dab40f2c8af842a599a883\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/14f210ffec430f8850dab40f2c8af842a599a883\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/14f210ffec430f8850dab40f2c8af842a599a883\"}}}], \"date\": \"2020-04-12T13:20:03+00:00\", \"message\": \"Automatically generated. Merged on Decap CMS.\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/169e7f31787acb9c6ef98b47627546c6fb0ffa17/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1131", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0463571548462", - "Connection": "Keep-Alive", - "X-Request-Count": "2601", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "180" - }, - "response": "---\ntemplate: post\ntitle: first title\nimage: /media/netlify.png\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1129", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0533862113953", - "Connection": "Keep-Alive", - "X-Request-Count": "1289", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0589561462402", - "Connection": "Keep-Alive", - "X-Request-Count": "3918", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3867" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"169e7f31787acb9c6ef98b47627546c6fb0ffa17\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7Bbef09da8-eefb-4430-b28b-7de95ec834c2%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{bef09da8-eefb-4430-b28b-7de95ec834c2}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/169e7f31787acb9c6ef98b47627546c6fb0ffa17\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/169e7f31787acb9c6ef98b47627546c6fb0ffa17/comments\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/169e7f31787acb9c6ef98b47627546c6fb0ffa17\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/169e7f31787acb9c6ef98b47627546c6fb0ffa17\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/169e7f31787acb9c6ef98b47627546c6fb0ffa17/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/169e7f31787acb9c6ef98b47627546c6fb0ffa17/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}}, {\"hash\": \"14f210ffec430f8850dab40f2c8af842a599a883\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/14f210ffec430f8850dab40f2c8af842a599a883\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/14f210ffec430f8850dab40f2c8af842a599a883\"}}}], \"date\": \"2020-04-12T13:20:03+00:00\", \"message\": \"Automatically generated. Merged on Decap CMS.\\n\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/169e7f31787acb9c6ef98b47627546c6fb0ffa17/content/posts/1970-01-01-first-title.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0488810539246", - "Connection": "Keep-Alive", - "X-Request-Count": "4149", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "180" - }, - "response": "---\ntemplate: post\ntitle: first title\nimage: /media/netlify.png\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/pullrequests?pagelen=50&q=source.repository.full_name = \"owner/repo\" AND state = \"OPEN\" AND destination.branch.name = \"master\" AND comment_count > 0 AND source.branch.name = \"cms/posts/1970-01-01-first-title\"", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "pullrequest", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0658609867096", - "Connection": "Keep-Alive", - "X-Request-Count": "4847", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "51" - }, - "response": "{\"pagelen\": 50, \"values\": [], \"page\": 1, \"size\": 0}", - "status": 200 - } -] diff --git a/source/admin/cypress/fixtures/BitBucket Backend Media Library - REST API__can save entry with image.json b/source/admin/cypress/fixtures/BitBucket Backend Media Library - REST API__can save entry with image.json deleted file mode 100644 index cfdcf0b..0000000 --- a/source/admin/cypress/fixtures/BitBucket Backend Media Library - REST API__can save entry with image.json +++ /dev/null @@ -1,1009 +0,0 @@ -[ - { - "method": "GET", - "url": "/2.0/repositories/owner/repo", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0467000007629", - "Connection": "Keep-Alive", - "X-Request-Count": "3617", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2995" - }, - "response": "{\"scm\": \"git\", \"website\": null, \"has_wiki\": false, \"name\": \"repo\", \"links\": {\"watchers\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/watchers\"}, \"branches\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches\"}, \"tags\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/tags\"}, \"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits\"}, \"clone\": [{\"href\": \"https://owner@bitbucket.org/owner/repo.git\", \"name\": \"https\"}, {\"href\": \"git@bitbucket.org:owner/repo.git\", \"name\": \"ssh\"}], \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"source\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/src\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B4c4415b4-a438-43c3-b94c-6405498d73fc%7D?ts=default\"}, \"hooks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/hooks\"}, \"forks\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/forks\"}, \"downloads\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/downloads\"}, \"pullrequests\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/pullrequests\"}}, \"fork_policy\": \"allow_forks\", \"uuid\": \"{4c4415b4-a438-43c3-b94c-6405498d73fc}\", \"language\": \"\", \"created_on\": \"2020-04-12T09:56:49.628042+00:00\", \"mainbranch\": {\"type\": \"branch\", \"name\": \"master\"}, \"full_name\": \"owner/repo\", \"has_issues\": false, \"owner\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}, \"updated_on\": \"2020-04-12T09:57:55.229489+00:00\", \"size\": 4282777, \"type\": \"repository\", \"slug\": \"repo\", \"is_private\": false, \"description\": \"\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/user", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0327689647675", - "X-Accepted-OAuth-Scopes": "account", - "Connection": "Keep-Alive", - "X-Request-Count": "1153", - "X-Version": "e1ce49ad4aa3", - "X-Frame-Options": "SAMEORIGIN", - "content-length": "1041" - }, - "response": "{\"name\":\"owner\",\"display_name\":\"owner\",\"links\":{\"avatar\":{\"href\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\"}},\"nickname\":\"owner\"}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0724029541016", - "Connection": "Keep-Alive", - "X-Request-Count": "447", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3609" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B4c4415b4-a438-43c3-b94c-6405498d73fc%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{4c4415b4-a438-43c3-b94c-6405498d73fc}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1119", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.049901008606", - "Connection": "Keep-Alive", - "X-Request-Count": "4142", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3609" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B4c4415b4-a438-43c3-b94c-6405498d73fc%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{4c4415b4-a438-43c3-b94c-6405498d73fc}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/static/media?max_depth=1&pagelen=100", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1117", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0402231216431", - "Connection": "Keep-Alive", - "X-Request-Count": "1115", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "Content-Length": "78" - }, - "response": "{\"type\":\"error\",\"error\":{\"message\":\"No such file or directory: static/media\"}}", - "status": 404 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/refs/branches/master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1105", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0627279281616", - "Connection": "Keep-Alive", - "X-Request-Count": "3212", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "3609" - }, - "response": "{\"name\": \"master\", \"links\": {\"commits\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commits/master\"}, \"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/refs/branches/master\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/branch/master\"}}, \"default_merge_strategy\": \"merge_commit\", \"merge_strategies\": [\"merge_commit\", \"squash\", \"fast_forward\"], \"type\": \"branch\", \"target\": {\"hash\": \"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B4c4415b4-a438-43c3-b94c-6405498d73fc%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{4c4415b4-a438-43c3-b94c-6405498d73fc}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/statuses\"}}, \"author\": {\"raw\": \"Erez Rokah \", \"type\": \"author\", \"user\": {\"display_name\": \"Erez Rokah\", \"uuid\": \"{0344b5bd-000e-47ad-80d1-b0a91b92bb53}\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/users/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D\"}, \"html\": {\"href\": \"https://bitbucket.org/%7B0344b5bd-000e-47ad-80d1-b0a91b92bb53%7D/\"}, \"avatar\": {\"href\": \"https://secure.gravatar.com/avatar/2c95a9ee2f890f6c9ccdbf2438c88ca7?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FER-2.png\"}}, \"nickname\": \"owner\", \"type\": \"user\", \"account_id\": \"557058:f3be1617-a338-488e-99a1-4ed46a10755a\"}}, \"parents\": [{\"hash\": \"536a257d1e997553bb48535542a6a6e98612cd44\", \"type\": \"commit\", \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/536a257d1e997553bb48535542a6a6e98612cd44\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/536a257d1e997553bb48535542a6a6e98612cd44\"}}}], \"date\": \"2020-01-20T13:25:35+00:00\", \"message\": \".gitattributes edited online with Bitbucket\", \"type\": \"commit\"}}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts?max_depth=1&pagelen=20", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0655500888824", - "Connection": "Keep-Alive", - "X-Request-Count": "148", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "6371" - }, - "response": "{\"pagelen\":20,\"values\":[{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"}},\"path\":\"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":1707},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"}},\"path\":\"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2565},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"}},\"path\":\"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":2786},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"}},\"path\":\"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":16071},{\"mimetype\":null,\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"},\"meta\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?format=meta\"},\"history\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/filehistory/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"}},\"path\":\"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"commit\":{\"type\":\"commit\",\"hash\":\"b782b50eefc7d6f6482ac989eb5c9142d5abfa37\",\"links\":{\"self\":{\"href\":\"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"},\"html\":{\"href\":\"https://bitbucket.org/owner/repo/commits/b782b50eefc7d6f6482ac989eb5c9142d5abfa37\"}}},\"attributes\":[],\"type\":\"commit_file\",\"size\":7465}],\"page\":1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0349900722504", - "Connection": "Keep-Alive", - "X-Request-Count": "309", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2565" - }, - "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n \n\t \n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1107", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.043515920639", - "Connection": "Keep-Alive", - "X-Request-Count": "125", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "1707" - }, - "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/commits?path=content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md&include=master", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Content-Type": "application/json; charset=utf-8", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1142", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0865790843964", - "Connection": "Keep-Alive", - "X-Request-Count": "3009", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2339" - }, - "response": "{\"pagelen\": 30, \"values\": [{\"rendered\": {\"message\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \"\n\t\t\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.
\n\t\t\n\tinitial commit
\", \"type\": \"rendered\"}}, \"hash\": \"2bc3fa39d8adb9e008e52793854338399fc6e4ad\", \"repository\": {\"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo\"}, \"avatar\": {\"href\": \"https://bytebucket.org/ravatar/%7B4c4415b4-a438-43c3-b94c-6405498d73fc%7D?ts=default\"}}, \"type\": \"repository\", \"name\": \"repo\", \"full_name\": \"owner/repo\", \"uuid\": \"{4c4415b4-a438-43c3-b94c-6405498d73fc}\"}, \"links\": {\"self\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"comments\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/comments\"}, \"patch\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/patch/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"html\": {\"href\": \"https://bitbucket.org/owner/repo/commits/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"diff\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/diff/2bc3fa39d8adb9e008e52793854338399fc6e4ad\"}, \"approve\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/approve\"}, \"statuses\": {\"href\": \"https://api.bitbucket.org/2.0/repositories/owner/repo/commit/2bc3fa39d8adb9e008e52793854338399fc6e4ad/statuses\"}}, \"author\": {\"raw\": \"ownerkah\", \"type\": \"author\"}, \"summary\": {\"raw\": \"initial commit\\n\", \"markup\": \"markdown\", \"html\": \" initial commit
\", \"type\": \"rendered\"}, \"parents\": [], \"date\": \"2019-07-24T07:45:32+00:00\", \"message\": \"initial commit\\n\", \"type\": \"commit\"}], \"page\": 1, \"size\": 1}", - "status": 200 - }, - { - "method": "GET", - "url": "/2.0/repositories/owner/repo/src/b782b50eefc7d6f6482ac989eb5c9142d5abfa37/content/posts/2016-02-02---A-Brief-History-of-Typography.md", - "headers": { - "Server": "nginx", - "Vary": "Authorization", - "Cache-Control": "max-age=86400", - "Content-Type": "text/plain", - "X-OAuth-Scopes": "pullrequest:write, repository:delete, repository:admin, account", - "Access-Control-Expose-Headers": "Accept-Ranges, Content-Encoding, Content-Length, Content-Type, ETag, Last-Modified", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Served-By": "app-1106", - "Access-Control-Allow-Origin": "*", - "X-Static-Version": "e1ce49ad4aa3", - "X-Content-Type-Options": "nosniff", - "X-Accepted-OAuth-Scopes": "repository", - "X-Credential-Type": "oauth2", - "X-Render-Time": "0.0304849147797", - "Connection": "Keep-Alive", - "X-Request-Count": "3498", - "X-Frame-Options": "SAMEORIGIN", - "X-Version": "e1ce49ad4aa3", - "content-length": "2786" - }, - "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n\n\t \n\t\tLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.
\n\t\t