get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

GET /api/patches/17666/?format=api
HTTP 200 OK
Allow: GET, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "id": 17666,
    "url": "http://patches.dpdk.org/api/patches/17666/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/patch/1480870057-1674-1-git-send-email-john.mcnamara@intel.com/",
    "project": {
        "id": 1,
        "url": "http://patches.dpdk.org/api/projects/1/?format=api",
        "name": "DPDK",
        "link_name": "dpdk",
        "list_id": "dev.dpdk.org",
        "list_email": "dev@dpdk.org",
        "web_url": "http://core.dpdk.org",
        "scm_url": "git://dpdk.org/dpdk",
        "webscm_url": "http://git.dpdk.org/dpdk",
        "list_archive_url": "https://inbox.dpdk.org/dev",
        "list_archive_url_format": "https://inbox.dpdk.org/dev/{}",
        "commit_url_format": ""
    },
    "msgid": "<1480870057-1674-1-git-send-email-john.mcnamara@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/1480870057-1674-1-git-send-email-john.mcnamara@intel.com",
    "date": "2016-12-04T16:47:37",
    "name": "[dpdk-dev,v1] doc: fix relative path of Nic table input file",
    "commit_ref": null,
    "pull_url": null,
    "state": "accepted",
    "archived": true,
    "hash": "ca91bc11be343f477c12c1e3d606466dc0f6831b",
    "submitter": {
        "id": 154,
        "url": "http://patches.dpdk.org/api/people/154/?format=api",
        "name": "John McNamara",
        "email": "john.mcnamara@intel.com"
    },
    "delegate": {
        "id": 1,
        "url": "http://patches.dpdk.org/api/users/1/?format=api",
        "username": "tmonjalo",
        "first_name": "Thomas",
        "last_name": "Monjalon",
        "email": "thomas@monjalon.net"
    },
    "mbox": "http://patches.dpdk.org/project/dpdk/patch/1480870057-1674-1-git-send-email-john.mcnamara@intel.com/mbox/",
    "series": [],
    "comments": "http://patches.dpdk.org/api/patches/17666/comments/",
    "check": "success",
    "checks": "http://patches.dpdk.org/api/patches/17666/checks/",
    "tags": {},
    "related": [],
    "headers": {
        "Return-Path": "<dev-bounces@dpdk.org>",
        "X-Original-To": "patchwork@dpdk.org",
        "Delivered-To": "patchwork@dpdk.org",
        "Received": [
            "from [92.243.14.124] (localhost [IPv6:::1])\n\tby dpdk.org (Postfix) with ESMTP id 376FF56B7;\n\tSun,  4 Dec 2016 17:47:45 +0100 (CET)",
            "from mga05.intel.com (mga05.intel.com [192.55.52.43])\n\tby dpdk.org (Postfix) with ESMTP id 4FA115678;\n\tSun,  4 Dec 2016 17:47:42 +0100 (CET)",
            "from fmsmga002.fm.intel.com ([10.253.24.26])\n\tby fmsmga105.fm.intel.com with ESMTP; 04 Dec 2016 08:47:42 -0800",
            "from sivswdev02.ir.intel.com (HELO localhost.localdomain)\n\t([10.237.217.46])\n\tby fmsmga002.fm.intel.com with ESMTP; 04 Dec 2016 08:47:41 -0800"
        ],
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos; i=\"5.33,299,1477983600\"; d=\"scan'208\";\n\ta=\"1094428656\"",
        "From": "John McNamara <john.mcnamara@intel.com>",
        "To": "dev@dpdk.org",
        "Cc": "stable@dpdk.org,\n\tJohn McNamara <john.mcnamara@intel.com>",
        "Date": "Sun,  4 Dec 2016 16:47:37 +0000",
        "Message-Id": "<1480870057-1674-1-git-send-email-john.mcnamara@intel.com>",
        "X-Mailer": "git-send-email 1.7.0.7",
        "Subject": "[dpdk-dev] [PATCH v1] doc: fix relative path of Nic table input file",
        "X-BeenThere": "dev@dpdk.org",
        "X-Mailman-Version": "2.1.15",
        "Precedence": "list",
        "List-Id": "DPDK patches and discussions <dev.dpdk.org>",
        "List-Unsubscribe": "<http://dpdk.org/ml/options/dev>,\n\t<mailto:dev-request@dpdk.org?subject=unsubscribe>",
        "List-Archive": "<http://dpdk.org/ml/archives/dev/>",
        "List-Post": "<mailto:dev@dpdk.org>",
        "List-Help": "<mailto:dev-request@dpdk.org?subject=help>",
        "List-Subscribe": "<http://dpdk.org/ml/listinfo/dev>,\n\t<mailto:dev-request@dpdk.org?subject=subscribe>",
        "Errors-To": "dev-bounces@dpdk.org",
        "Sender": "\"dev\" <dev-bounces@dpdk.org>"
    },
    "content": "Fix relative path between sphinx conf.py file and Nic table file\nto allow automatic build on ReadTheDocs.\n\nFixes: 9db3f52126fb (\"doc: generate NIC overview table from ini files\")\n\nSigned-off-by: John McNamara <john.mcnamara@intel.com>\n---\n doc/guides/conf.py | 3 ++-\n 1 file changed, 2 insertions(+), 1 deletion(-)",
    "diff": "diff --git a/doc/guides/conf.py b/doc/guides/conf.py\nindex 149bcdb..29e8efb 100644\n--- a/doc/guides/conf.py\n+++ b/doc/guides/conf.py\n@@ -312,7 +312,8 @@ def print_table_divider(outfile, num_cols):\n \n \n def setup(app):\n-    generate_nic_overview_table('doc/guides/nics/overview_table.txt')\n+    table_file = dirname(__file__) + '/nics/overview_table.txt'\n+    generate_nic_overview_table(table_file)\n \n     if LooseVersion(sphinx_version) < LooseVersion('1.3.1'):\n         print('Upgrade sphinx to version >= 1.3.1 for '\n",
    "prefixes": [
        "dpdk-dev",
        "v1"
    ]
}