Show a patch.

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

{
    "id": 235,
    "url": "https://patchwork.libcamera.org/api/1.1/patches/235/?format=api",
    "web_url": "https://patchwork.libcamera.org/patch/235/",
    "project": {
        "id": 1,
        "url": "https://patchwork.libcamera.org/api/1.1/projects/1/?format=api",
        "name": "libcamera",
        "link_name": "libcamera",
        "list_id": "libcamera_core",
        "list_email": "libcamera-devel@lists.libcamera.org",
        "web_url": "",
        "scm_url": "",
        "webscm_url": ""
    },
    "msgid": "<20190115151849.1547-4-laurent.pinchart@ideasonboard.com>",
    "date": "2019-01-15T15:18:44",
    "name": "[libcamera-devel,v2,3/8] Documentation: Exclude pipeline handlers directory",
    "commit_ref": null,
    "pull_url": null,
    "state": "accepted",
    "archived": false,
    "hash": "3b146d837d5c7f26b4bed171c2b3cdeb6dc3ea70",
    "submitter": {
        "id": 2,
        "url": "https://patchwork.libcamera.org/api/1.1/people/2/?format=api",
        "name": "Laurent Pinchart",
        "email": "laurent.pinchart@ideasonboard.com"
    },
    "delegate": null,
    "mbox": "https://patchwork.libcamera.org/patch/235/mbox/",
    "series": [
        {
            "id": 81,
            "url": "https://patchwork.libcamera.org/api/1.1/series/81/?format=api",
            "web_url": "https://patchwork.libcamera.org/project/libcamera/list/?series=81",
            "date": "2019-01-15T15:18:41",
            "name": "Pipeline handler refactoring and assorted improvements",
            "version": 2,
            "mbox": "https://patchwork.libcamera.org/series/81/mbox/"
        }
    ],
    "comments": "https://patchwork.libcamera.org/api/patches/235/comments/",
    "check": "pending",
    "checks": "https://patchwork.libcamera.org/api/patches/235/checks/",
    "tags": {},
    "headers": {
        "Return-Path": "<laurent.pinchart@ideasonboard.com>",
        "Received": [
            "from perceval.ideasonboard.com (perceval.ideasonboard.com\n\t[IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id E321D60C85\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tTue, 15 Jan 2019 16:18:53 +0100 (CET)",
            "from pendragon.bb.dnainternet.fi\n\t(dfj612yhrgyx302h3jwwy-3.rev.dnainternet.fi\n\t[IPv6:2001:14ba:21f5:5b00:ce28:277f:58d7:3ca4])\n\tby perceval.ideasonboard.com (Postfix) with ESMTPSA id 833B255C\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tTue, 15 Jan 2019 16:18:53 +0100 (CET)"
        ],
        "DKIM-Signature": "v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com;\n\ts=mail; t=1547565533;\n\tbh=ekM0Z/f9B5RgrZ0tUGeGD0I57RnbOD8gy7RoQTNGyHA=;\n\th=From:To:Subject:Date:In-Reply-To:References:From;\n\tb=V/y3WgZJMxkrHaW6c+qppMbycoyAO77WIL3s1XDcxIX9oODWcFq3CJ53K9FXIsBKr\n\tp2X36z7l0XWiIkc7siMdeIcqxD58fjwUyKNp7QH6AHLQDHcmSuiqgJwGLrmwW+dZcl\n\tfOWZlEkFc8PObeVlrUg+RXzyyDG22dFfttwgeWBw=",
        "From": "Laurent Pinchart <laurent.pinchart@ideasonboard.com>",
        "To": "libcamera-devel@lists.libcamera.org",
        "Date": "Tue, 15 Jan 2019 17:18:44 +0200",
        "Message-Id": "<20190115151849.1547-4-laurent.pinchart@ideasonboard.com>",
        "X-Mailer": "git-send-email 2.19.2",
        "In-Reply-To": "<20190115151849.1547-1-laurent.pinchart@ideasonboard.com>",
        "References": "<20190115151849.1547-1-laurent.pinchart@ideasonboard.com>",
        "MIME-Version": "1.0",
        "Content-Transfer-Encoding": "8bit",
        "Subject": "[libcamera-devel] [PATCH v2 3/8] Documentation: Exclude pipeline\n\thandlers directory",
        "X-BeenThere": "libcamera-devel@lists.libcamera.org",
        "X-Mailman-Version": "2.1.23",
        "Precedence": "list",
        "List-Id": "<libcamera-devel.lists.libcamera.org>",
        "List-Unsubscribe": "<https://lists.libcamera.org/options/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=unsubscribe>",
        "List-Archive": "<https://lists.libcamera.org/pipermail/libcamera-devel/>",
        "List-Post": "<mailto:libcamera-devel@lists.libcamera.org>",
        "List-Help": "<mailto:libcamera-devel-request@lists.libcamera.org?subject=help>",
        "List-Subscribe": "<https://lists.libcamera.org/listinfo/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=subscribe>",
        "X-List-Received-Date": "Tue, 15 Jan 2019 15:18:54 -0000"
    },
    "content": "The pipeline handlers don't define APIs, neither public not internal.\nThere is thus no need to generate Doxygen documentation from thoses\nclasses. Add them to the EXCLUDE files pattern.\n\nSigned-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>\nReviewed-by: Jacopo Mondi <jacopo@jmondi.org>\n---\n Documentation/Doxyfile.in | 2 +-\n 1 file changed, 1 insertion(+), 1 deletion(-)",
    "diff": "diff --git a/Documentation/Doxyfile.in b/Documentation/Doxyfile.in\nindex 5c0d87baac9c..dd74b7295d50 100644\n--- a/Documentation/Doxyfile.in\n+++ b/Documentation/Doxyfile.in\n@@ -833,7 +833,7 @@ RECURSIVE              = YES\n # Note that relative paths are relative to the directory from which doxygen is\n # run.\n \n-EXCLUDE                =\n+EXCLUDE                = ../src/libcamera/pipeline/\n \n # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or\n # directories that are symbolic links (a Unix file system feature) are excluded\n",
    "prefixes": [
        "libcamera-devel",
        "v2",
        "3/8"
    ]
}