aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_web
Commit message (Collapse)AuthorAgeFilesLines
* container browse: refactor count data structure to fix sortingBryan Newbold2022-02-153-30/+79
|
* containers: small fixes to browse viewBryan Newbold2022-02-151-3/+8
|
* web: tweak 'generic' / container mix-in search result behaviorBryan Newbold2022-02-151-1/+10
|
* web: remove generic entity fields from 'metadata' tabBryan Newbold2022-02-152-4/+17
|
* containers: iterate on browse interface, showing year/volume/issueBryan Newbold2022-02-113-51/+94
|
* containers: progress on browse interfaceBryan Newbold2022-02-114-28/+146
|
* container browse: quick fix type annotationBryan Newbold2022-02-091-1/+1
|
* move container_status ES query code from fatcat_web to fatcat_toolsBryan Newbold2022-02-092-153/+18
| | | | | | The main motivation is to never have fatcat_tools import from fatcat_web, only vica-versa. Some code in fatcat_tools needs container stats, so starting with that code path (plus some generic helpers).
* containers: initial work on 'browse' featureBryan Newbold2022-02-094-1/+107
|
* web: move search-in-container to dedicated tabBryan Newbold2022-02-094-3/+119
|
* search: improve container_id handlingBryan Newbold2022-02-091-27/+6
|
* container SERP: fix layout on mobileBryan Newbold2022-02-092-54/+62
|
* container search: iterate on SERP page (including stats)Bryan Newbold2022-02-093-10/+72
|
* container: scholars portal kbart link; unknown type displayBryan Newbold2022-02-091-1/+3
|
* Merge remote-tracking branch 'github/master'Bryan Newbold2022-02-091-1/+7
|\
| * Display unknown abstract formatJohannah Sprinz2022-02-081-3/+7
| |
| * hide abstract format if NoneJohannah Sprinz2022-02-081-1/+3
| |
* | web: update homepage preservation svg imageBryan Newbold2022-02-092-2/+6
| |
* | web: editgroup and editor underscore redirect helpersBryan Newbold2022-02-091-0/+10
| |
* | release SERP: show wikidata QIDBryan Newbold2022-02-081-0/+3
| |
* | editing: correct button/form namesBryan Newbold2022-02-082-2/+2
| |
* | release: tweak preservation label textBryan Newbold2022-02-081-2/+2
|/
* container view: don't display status/type if unknownBryan Newbold2022-02-071-2/+8
|
* web: switch 'perpetual access' terminology to 'preservation'Bryan Newbold2022-02-073-9/+9
|
* web: handle abstract with no mimetypeBryan Newbold2022-02-071-1/+1
| | | | | Good example of a bug where type annotations on entity classes would help.
* search: fix 'max() arg is an empty sequence'Bryan Newbold2022-02-041-2/+2
|
* search: add a circuit break on very large volume rangesBryan Newbold2022-02-041-0/+2
|
* temporarily disable mypy checks on web_config.pyBryan Newbold2022-02-032-2/+8
|
* small changes to preservation coverage search queriesBryan Newbold2022-02-032-10/+67
| | | | | | | - allow fetching of by-release-type preservation histograms as JSON - query flag to exclude 'stub' entity types - don't include 'stub' entities in container-by-year or container-by-volume charts (and JSON)
* web: update front-page statsBryan Newbold2022-02-011-3/+3
|
* web: support for alert messages (site-wide)Bryan Newbold2022-01-212-1/+16
|
* elasticsearch: bump timeout to 40 seconds (from default of 10)Bryan Newbold2022-01-101-1/+1
|
* make fmtBryan Newbold2021-12-152-5/+6
|
* move from raven to sentry_sdkMartin Czygan2021-12-142-5/+12
| | | | | | | | | related docs: * https://docs.sentry.io/platforms/python/guides/flask/migration/ * https://docs.sentry.io/platforms/python/guides/asgi/configuration/integrations/flask/ > `fetch_git_sha` is gone, see: https://forum.sentry.io/t/fetch-git-sha-equivalent-in-the-unified-python-sdk/5521
* codespell fixes in python code (comments)Bryan Newbold2021-11-242-3/+3
|
* codespell fixes in web interface templatesBryan Newbold2021-11-2414-19/+19
|
* typo: don't expand containers for release revs (TOML)Bryan Newbold2021-11-191-1/+1
|
* web editgroup diff: don't enrich in TOML diff; fix overlapping breakBryan Newbold2021-11-192-5/+8
|
* web generic entity helpers: make enrichment optionalBryan Newbold2021-11-191-18/+49
|
* polish editgroup diff viewBryan Newbold2021-11-183-92/+75
| | | | Still not as great as it could be, but useful in this state.
* initial implementation of editgroup 'diff' for reviewBryan Newbold2021-11-174-6/+183
|
* web: fix API URL link for review pages of entitiesBryan Newbold2021-11-171-2/+2
|
* web: handle ES non-int error codes betterBryan Newbold2021-11-121-9/+12
|
* lint: minor import tweakBryan Newbold2021-11-091-1/+1
|
* web: work around remaining type annotation issuesBryan Newbold2021-11-032-11/+15
|
* ignore type errors in cors.py (third party code)Bryan Newbold2021-11-031-2/+2
|
* web: fix bytes/text warning loggingBryan Newbold2021-11-031-3/+3
| | | | Minor issue. Caught by type checking
* lint: remove unused importBryan Newbold2021-11-031-1/+0
| | | | This was caught by new linting, I think not caused by any recent changes
* web config: add helper for coercing env vars into booleansBryan Newbold2021-11-031-3/+32
|
* web: add type annotationsBryan Newbold2021-11-0312-297/+347
| | | | | This commit does not include type fixes, only annotations. A small number of tuples were also converted to lists.