Skip to content
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.

Return contributor details from list API and include in CSV download #1005

Merged
merged 4 commits into from
Mar 30, 2020

Commits on Mar 30, 2020

  1. Return contributor details from list API and include in CSV download

    The complex permission and visibility checks required make fetching contributor
    details for each facility slow, so we are cutting the maximum results per page
    from 500 to 50.
    
    Contributor names and list names can have commas, so we join them with a
    vertical bar in the CSV to make machine parsing of multiple contributors
    possible.
    jwalgran committed Mar 30, 2020
    Configuration menu
    Copy the full SHA
    6786260 View commit details
    Browse the repository at this point in the history
  2. Prevent contributor names and list names from containing |

    We are using the | character to separate contributors in CSV downloads so we
    want to prevent using that character in names of contributors or lists.
    jwalgran committed Mar 30, 2020
    Configuration menu
    Copy the full SHA
    32eae9f View commit details
    Browse the repository at this point in the history
  3. Show a determinate progress bar when download facility CSV

    We know the total number of facilities so it is possible to show percent
    progress. We have opted for a linear progress bar rather than a circular one
    because it looks better in this situation where our progress jumps rather than
    smoothly increases.
    jwalgran committed Mar 30, 2020
    Configuration menu
    Copy the full SHA
    77a4ea1 View commit details
    Browse the repository at this point in the history
  4. Update CHANGELOG

    jwalgran committed Mar 30, 2020
    Configuration menu
    Copy the full SHA
    0ade4fb View commit details
    Browse the repository at this point in the history