Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Translation Alignments: Port translation alignment endpoints from Flask app to ATLAS #4

Merged
merged 37 commits into from
Apr 3, 2020

Commits on Jul 5, 2019

  1. improve admin

    jacobwegner committed Jul 5, 2019
    Configuration menu
    Copy the full SHA
    2028e6b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ca306b4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7ef593a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    14b661b View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    f0df5b6 View commit details
    Browse the repository at this point in the history
  6. update fixture

    jacobwegner committed Jul 5, 2019
    Configuration menu
    Copy the full SHA
    aad9d8a View commit details
    Browse the repository at this point in the history
  7. fix fixture

    jacobwegner committed Jul 5, 2019
    Configuration menu
    Copy the full SHA
    0eb39b4 View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2019

  1. Configuration menu
    Copy the full SHA
    b7c63c0 View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2019

  1. Configuration menu
    Copy the full SHA
    42cecdc View commit details
    Browse the repository at this point in the history
  2. ensure distinct

    jacobwegner committed Jul 9, 2019
    Configuration menu
    Copy the full SHA
    1b75b71 View commit details
    Browse the repository at this point in the history

Commits on Jul 12, 2019

  1. Configuration menu
    Copy the full SHA
    cd1c64a View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2019

  1. upgrade to latest graphene-django

    fixes an issue where we had to define filter_fields even with an explicit filterset_class
    was in use
    jacobwegner committed Aug 20, 2019
    Configuration menu
    Copy the full SHA
    d13a172 View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2019

  1. Merge branch 'master' into feature/translation-alignments

    # Conflicts:
    #	readhomer_atlas/library/admin.py
    #	readhomer_atlas/library/schema.py
    #	requirements.txt
    jacobwegner committed Nov 14, 2019
    Configuration menu
    Copy the full SHA
    c37b1d6 View commit details
    Browse the repository at this point in the history
  2. update for SQLite

    jacobwegner committed Nov 14, 2019
    Configuration menu
    Copy the full SHA
    da55a61 View commit details
    Browse the repository at this point in the history
  3. update db prep script

    jacobwegner committed Nov 14, 2019
    Configuration menu
    Copy the full SHA
    0cd2604 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    345b87e View commit details
    Browse the repository at this point in the history
  5. switch to bulk create

    jacobwegner committed Nov 14, 2019
    Configuration menu
    Copy the full SHA
    14ea562 View commit details
    Browse the repository at this point in the history
  6. set batch_size

    jacobwegner committed Nov 14, 2019
    Configuration menu
    Copy the full SHA
    6c448c9 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    6ee0bd2 View commit details
    Browse the repository at this point in the history

Commits on Nov 15, 2019

  1. Configuration menu
    Copy the full SHA
    fef8bc9 View commit details
    Browse the repository at this point in the history
  2. update comments

    jacobwegner committed Nov 15, 2019
    Configuration menu
    Copy the full SHA
    e906234 View commit details
    Browse the repository at this point in the history

Commits on Nov 30, 2019

  1. Configuration menu
    Copy the full SHA
    fa8c408 View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2019

  1. Configuration menu
    Copy the full SHA
    b1b1ac9 View commit details
    Browse the repository at this point in the history

Commits on Mar 16, 2020

  1. Merge branch 'develop' into feature/translation-alignments

    # Conflicts:
    #	README.md
    #	readhomer_atlas/library/admin.py
    #	readhomer_atlas/library/importers/versions.py
    #	readhomer_atlas/library/migrations/0001_initial.py
    #	readhomer_atlas/library/models.py
    #	readhomer_atlas/library/schema.py
    jacobwegner committed Mar 16, 2020
    Configuration menu
    Copy the full SHA
    57b49b0 View commit details
    Browse the repository at this point in the history
  2. reset migrations

    jacobwegner committed Mar 16, 2020
    Configuration menu
    Copy the full SHA
    7cc4efc View commit details
    Browse the repository at this point in the history
  3. fix importer

    jacobwegner committed Mar 16, 2020
    Configuration menu
    Copy the full SHA
    3e80aec View commit details
    Browse the repository at this point in the history
  4. fix alignments importer

    jacobwegner committed Mar 16, 2020
    Configuration menu
    Copy the full SHA
    6e1a8b7 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b554f8a View commit details
    Browse the repository at this point in the history

Commits on Mar 19, 2020

  1. Configuration menu
    Copy the full SHA
    c5874b3 View commit details
    Browse the repository at this point in the history
  2. fix failing tests

    jacobwegner committed Mar 19, 2020
    Configuration menu
    Copy the full SHA
    e62a5f6 View commit details
    Browse the repository at this point in the history
  3. ignore .coverage

    jacobwegner committed Mar 19, 2020
    Configuration menu
    Copy the full SHA
    e48a816 View commit details
    Browse the repository at this point in the history
  4. fix up migrations

    jacobwegner committed Mar 19, 2020
    Configuration menu
    Copy the full SHA
    3460898 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    2c9e604 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    bf36d5d View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    aaafcf6 View commit details
    Browse the repository at this point in the history

Commits on Mar 23, 2020

  1. filter chunks that contain a reference

    we had a a "contains" relation ("lines") that isn't performant:
    
    345b87e
    
    took ingestion from ~7s to ~45s
    
    this allows us to do contains queries (and would likely allow further metadata
    such as "resolved")
    jacobwegner committed Mar 23, 2020
    Configuration menu
    Copy the full SHA
    8439315 View commit details
    Browse the repository at this point in the history

Commits on Apr 3, 2020

  1. Configuration menu
    Copy the full SHA
    69d2846 View commit details
    Browse the repository at this point in the history