issue_comments
7 rows where issue = 1114543475
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
id ▼ | html_url | issue_url | node_id | user | created_at | updated_at | author_association | body | reactions | issue | performed_via_github_app |
---|---|---|---|---|---|---|---|---|---|---|---|
1021784593 | https://github.com/simonw/sqlite-utils/issues/388#issuecomment-1021784593 | https://api.github.com/repos/simonw/sqlite-utils/issues/388 | IC_kwDOCGYnMM485zIR | simonw 9599 | 2022-01-26T01:56:48Z | 2022-01-26T01:56:48Z | OWNER | On https://readthedocs.org/dashboard/sqlite-utils/advanced/ I checked this box (previously unchecked): ![CleanShot 2022-01-25 at 17 56 22@2x](https://user-images.githubusercontent.com/9599/151090718-72e553a6-826a-43b6-98bd-f70b0cba8784.png) | {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} | Link to stable docs from older versions 1114543475 | |
1021785268 | https://github.com/simonw/sqlite-utils/issues/388#issuecomment-1021785268 | https://api.github.com/repos/simonw/sqlite-utils/issues/388 | IC_kwDOCGYnMM485zS0 | simonw 9599 | 2022-01-26T01:58:19Z | 2022-01-26T01:58:19Z | OWNER | While I'm modifying that template I'm also going to add Plausible analytics: ```html <script defer data-domain="sqlite-utils.datasette.io" src="https://plausible.io/js/plausible.js"></script> ``` | {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} | Link to stable docs from older versions 1114543475 | |
1021787822 | https://github.com/simonw/sqlite-utils/issues/388#issuecomment-1021787822 | https://api.github.com/repos/simonw/sqlite-utils/issues/388 | IC_kwDOCGYnMM485z6u | simonw 9599 | 2022-01-26T02:03:25Z | 2022-01-26T02:03:25Z | OWNER | https://sqlite-utils.datasette.io/en/latest/ <img width="1072" alt="image" src="https://user-images.githubusercontent.com/9599/151091309-30b9ba5f-fc32-4320-ad02-35b31ce0cc87.png"> | {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} | Link to stable docs from older versions 1114543475 | |
1021788260 | https://github.com/simonw/sqlite-utils/issues/388#issuecomment-1021788260 | https://api.github.com/repos/simonw/sqlite-utils/issues/388 | IC_kwDOCGYnMM4850Bk | simonw 9599 | 2022-01-26T02:04:17Z | 2022-01-26T02:04:17Z | OWNER | https://sqlite-utils.datasette.io/en/3.20/ now also shows the version warning banner. | {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} | Link to stable docs from older versions 1114543475 | |
1484269326 | https://github.com/simonw/sqlite-utils/issues/388#issuecomment-1484269326 | https://api.github.com/repos/simonw/sqlite-utils/issues/388 | IC_kwDOCGYnMM5YeCcO | simonw 9599 | 2023-03-26T23:24:12Z | 2023-03-26T23:28:14Z | OWNER | This broke on the upgrade to Furo. I fixed it in Datasette like this: https://github.com/simonw/datasette/commit/5c1cfa451d78e3935193f5e10eba59bf741241a1 and https://github.com/simonw/datasette/commit/db8cf899e286fbaa0a40f3a9ae8d5aaa1478822e | {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} | Link to stable docs from older versions 1114543475 | |
1484276302 | https://github.com/simonw/sqlite-utils/issues/388#issuecomment-1484276302 | https://api.github.com/repos/simonw/sqlite-utils/issues/388 | IC_kwDOCGYnMM5YeEJO | simonw 9599 | 2023-03-26T23:39:27Z | 2023-03-26T23:39:27Z | OWNER | Actually final Datasette fix was: ```html+jinja {% block scripts %} {{ super() }} <script> document.addEventListener("DOMContentLoaded", function() { // Show banner linking to /stable/ if this is a /latest/ page if (!/\/latest\//.test(location.pathname)) { return; } var stableUrl = location.pathname.replace("/latest/", "/stable/"); // Check it's not a 404 fetch(stableUrl, { method: "HEAD" }).then((response) => { if (response.status === 200) { var warning = document.createElement("div"); warning.className = "admonition warning"; warning.innerHTML = ` <p class="first admonition-title">Note</p> <p class="last"> This documentation covers the <strong>development version</strong> of Datasette. </p> <p> See <a href="${stableUrl}">this page</a> for the current stable release. </p> `; var mainArticle = document.querySelector("article[role=main]"); mainArticle.insertBefore(warning, mainArticle.firstChild); } }); }); </script> {% endblock %} ``` | {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} | Link to stable docs from older versions 1114543475 | |
1484277416 | https://github.com/simonw/sqlite-utils/issues/388#issuecomment-1484277416 | https://api.github.com/repos/simonw/sqlite-utils/issues/388 | IC_kwDOCGYnMM5YeEao | simonw 9599 | 2023-03-26T23:43:12Z | 2023-03-26T23:43:12Z | OWNER | Fixed: https://sqlite-utils.datasette.io/en/latest/reference.html | {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} | Link to stable docs from older versions 1114543475 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE [issue_comments] ( [html_url] TEXT, [issue_url] TEXT, [id] INTEGER PRIMARY KEY, [node_id] TEXT, [user] INTEGER REFERENCES [users]([id]), [created_at] TEXT, [updated_at] TEXT, [author_association] TEXT, [body] TEXT, [reactions] TEXT, [issue] INTEGER REFERENCES [issues]([id]) , [performed_via_github_app] TEXT); CREATE INDEX [idx_issue_comments_issue] ON [issue_comments] ([issue]); CREATE INDEX [idx_issue_comments_user] ON [issue_comments] ([user]);