Show a cover letter.

GET /api/1.1/covers/262/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "id": 262,
    "url": "https://patchwork.libcamera.org/api/1.1/covers/262/?format=api",
    "web_url": "https://patchwork.libcamera.org/cover/262/",
    "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": "<20190117212703.24047-1-kieran.bingham@ideasonboard.com>",
    "date": "2019-01-17T21:27:01",
    "name": "[libcamera-devel,v4,0/2] V4L2Device: Add basic V4L2 support class",
    "submitter": {
        "id": 4,
        "url": "https://patchwork.libcamera.org/api/1.1/people/4/?format=api",
        "name": "Kieran Bingham",
        "email": "kieran.bingham@ideasonboard.com"
    },
    "mbox": "https://patchwork.libcamera.org/cover/262/mbox/",
    "series": [
        {
            "id": 88,
            "url": "https://patchwork.libcamera.org/api/1.1/series/88/?format=api",
            "web_url": "https://patchwork.libcamera.org/project/libcamera/list/?series=88",
            "date": "2019-01-17T21:27:01",
            "name": "V4L2Device: Add basic V4L2 support class",
            "version": 4,
            "mbox": "https://patchwork.libcamera.org/series/88/mbox/"
        }
    ],
    "comments": "https://patchwork.libcamera.org/api/covers/262/comments/",
    "headers": {
        "Return-Path": "<kieran.bingham@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 C182460B2D\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tThu, 17 Jan 2019 22:27:12 +0100 (CET)",
            "from localhost.localdomain\n\t(cpc89242-aztw30-2-0-cust488.18-1.cable.virginm.net [86.31.129.233])\n\tby perceval.ideasonboard.com (Postfix) with ESMTPSA id 3267253E;\n\tThu, 17 Jan 2019 22:27:12 +0100 (CET)"
        ],
        "DKIM-Signature": "v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com;\n\ts=mail; t=1547760432;\n\tbh=S/GlXkvsk4oA6UzhmysOY3clhyo3V6qneCrP7BO7l9Y=;\n\th=From:To:Cc:Subject:Date:From;\n\tb=fD3BJNLI8n621lrxYoXTUTXNpQp5T/mQWnuwEQ8RCqcOBivAArYvofxCw3ZBTHS0R\n\tfrGysKVF4bkAJ0Kzx1AH0PbctKBQ7eDLIbHFM3H6H9teYbrdG5HnLkduzJCLFpiKn8\n\tW6J+ykzcysfaOwPbFM3z2h8iK7LcrNT/y4nCj1O0=",
        "From": "Kieran Bingham <kieran.bingham@ideasonboard.com>",
        "To": "LibCamera Devel <libcamera-devel@lists.libcamera.org>",
        "Date": "Thu, 17 Jan 2019 21:27:01 +0000",
        "Message-Id": "<20190117212703.24047-1-kieran.bingham@ideasonboard.com>",
        "X-Mailer": "git-send-email 2.17.1",
        "MIME-Version": "1.0",
        "Content-Type": "text/plain; charset=UTF-8",
        "Content-Transfer-Encoding": "8bit",
        "Subject": "[libcamera-devel] [PATCH v4 0/2] V4L2Device: Add basic V4L2 support\n\tclass",
        "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": "Thu, 17 Jan 2019 21:27:12 -0000"
    },
    "content": "Define the beginnings of a V4L2 device management object.\n\nThis basic class supports opening the device and parsing the device\ncapabilities including obtaining the driver, device, and bus\ninformation.\n\nThe device will reject ->open() calls on devices which are not either\nCAPTURE or OUTPUT devices and those which do not support the streaming\nI/O interface.\n\nKieran Bingham (2):\n  libcamera: Add V4L2 Device object\n  test: v4l2_device: Add test suite and initial test\n\n src/libcamera/include/v4l2_device.h   |  60 +++++++++\n src/libcamera/meson.build             |   2 +\n src/libcamera/v4l2_device.cpp         | 186 ++++++++++++++++++++++++++\n test/meson.build                      |   1 +\n test/v4l2_device/double_open.cpp      |  38 ++++++\n test/v4l2_device/meson.build          |  12 ++\n test/v4l2_device/v4l2_device_test.cpp |  43 ++++++\n test/v4l2_device/v4l2_device_test.h   |  27 ++++\n 8 files changed, 369 insertions(+)\n create mode 100644 src/libcamera/include/v4l2_device.h\n create mode 100644 src/libcamera/v4l2_device.cpp\n create mode 100644 test/v4l2_device/double_open.cpp\n create mode 100644 test/v4l2_device/meson.build\n create mode 100644 test/v4l2_device/v4l2_device_test.cpp\n create mode 100644 test/v4l2_device/v4l2_device_test.h"
}