Show a cover letter.

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

{
    "id": 256,
    "url": "https://patchwork.libcamera.org/api/covers/256/?format=api",
    "web_url": "https://patchwork.libcamera.org/cover/256/",
    "project": {
        "id": 1,
        "url": "https://patchwork.libcamera.org/api/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": "<20190117202043.21420-1-kieran.bingham@ideasonboard.com>",
    "date": "2019-01-17T20:20:38",
    "name": "[libcamera-devel,0/5] General fixes",
    "submitter": {
        "id": 4,
        "url": "https://patchwork.libcamera.org/api/people/4/?format=api",
        "name": "Kieran Bingham",
        "email": "kieran.bingham@ideasonboard.com"
    },
    "mbox": "https://patchwork.libcamera.org/cover/256/mbox/",
    "series": [
        {
            "id": 87,
            "url": "https://patchwork.libcamera.org/api/series/87/?format=api",
            "web_url": "https://patchwork.libcamera.org/project/libcamera/list/?series=87",
            "date": "2019-01-17T20:20:38",
            "name": "General fixes",
            "version": 1,
            "mbox": "https://patchwork.libcamera.org/series/87/mbox/"
        }
    ],
    "comments": "https://patchwork.libcamera.org/api/covers/256/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 B815560B2D\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tThu, 17 Jan 2019 21:20:48 +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 2866A53E;\n\tThu, 17 Jan 2019 21:20:48 +0100 (CET)"
        ],
        "DKIM-Signature": "v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com;\n\ts=mail; t=1547756448;\n\tbh=G6M6iaGQ8w5idYIkKozMko91Q3q8Q4BsLvOQ/vG6U6Q=;\n\th=From:To:Cc:Subject:Date:From;\n\tb=EfhpAmnqDTRZtRFVptILqkDJvAZOMMAkZZn+5sWJsAuY0G8Qh3HEQnGk6VOFLX+jR\n\tDLTJrpVvMjs722ctzugeB7j2dg6DVpeZZH4gdLCH0dZ/VICX8O/Y1Mi+gJroVHtDkp\n\tGxjdtqBXP/+Qxy0vuifr1nF1vFo2Wfc6QuBHr074=",
        "From": "Kieran Bingham <kieran.bingham@ideasonboard.com>",
        "To": "LibCamera Devel <libcamera-devel@lists.libcamera.org>",
        "Date": "Thu, 17 Jan 2019 20:20:38 +0000",
        "Message-Id": "<20190117202043.21420-1-kieran.bingham@ideasonboard.com>",
        "X-Mailer": "git-send-email 2.17.1",
        "Subject": "[libcamera-devel] [PATCH 0/5] General fixes",
        "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 20:20:48 -0000"
    },
    "content": "Heya,\n\nHere's a few miscellaneous patches I've collected this week while\ndeveloping.\n\nThe first three patches tackle the Timer class, after I hit an issue\nwhere timers longer than 4.29 seconds fail, due to the internals\nwrapping at 32 bits.\n\nThe first patch ensures that all member variables are initialised as\nthis was generating a warning in my IDE static analyser.\n\nThen we add a test which fails, and follow that by a patch to introduce\nthe fix allowing the test to pass.\n\nPatch 4 fixes up some warnings that our checkstyle.py script complained\nabout in the log class, and I caught a /really/ trivial spelling error\nin event_dispatch_poll.\n\n\n\nKieran Bingham (5):\n  test: timer: Initialise all variables\n  test: timer: Add a 32 bit wraparound test\n  libcamera: timer: Fix 32 bit wrap\n  libcamera: log: Fix coding style warnings\n  libcamera: event_dispatcher_poll: Fix trivial spelling\n\n src/libcamera/event_dispatcher_poll.cpp |  2 +-\n src/libcamera/include/log.h             |  6 +++---\n src/libcamera/log.cpp                   |  2 +-\n src/libcamera/timer.cpp                 |  3 ++-\n test/timer.cpp                          | 16 +++++++++++++++-\n 5 files changed, 22 insertions(+), 7 deletions(-)"
}