An error occurred fetching the project authors.
  1. 29 Jun, 2016 3 commits
  2. 27 Jun, 2016 1 commit
  3. 24 Jun, 2016 1 commit
  4. 23 Jun, 2016 3 commits
  5. 22 Jun, 2016 1 commit
  6. 21 Jun, 2016 1 commit
  7. 20 Jun, 2016 1 commit
  8. 16 Jun, 2016 4 commits
  9. 14 Jun, 2016 1 commit
  10. 13 Jun, 2016 3 commits
  11. 12 Jun, 2016 1 commit
    • Stan Hu's avatar
      Fix Error 500 when viewing a blob with binary characters after the 1024-byte mark · 0fdfd2dd
      Stan Hu authored
      Here was the problem:
      
      1. When determining whether a given blob is viewable text, gitlab_git reads the first 1024 bytes and checks with Linguist whether it is a text or binary file.
      2. If the blob is text, GitLab will attempt to display it.
      3. However, if the text has binary characters after the first 1024 bytes, then GitLab will attempt to load the entire contents, but the encoding will be ASCII-8BIT since there are binary characters.
      4. The Error 500 results when GitLab attempts to display a mix UTF-8 and ASCII-8BIT.
      
      To fix this, we load as much data as we are willing to display so that the detection will work properly. Requires
      an update to gitlab_git: gitlab-org/gitlab_git!86
      
      Closes #13826
      0fdfd2dd
  12. 10 Jun, 2016 1 commit
  13. 07 Jun, 2016 4 commits
  14. 06 Jun, 2016 4 commits
    • Connor Shea's avatar
      Add gems and licenses that were previously missing. Approve a number of... · ddca2806
      Connor Shea authored
      Add gems and licenses that were previously missing. Approve a number of licenses after a bunch of research today.
      ddca2806
    • Connor Shea's avatar
      Add License Finder gem. · b51b1450
      Connor Shea authored
      In order to rehost all our gems in our own gem host, we need to have the legal rights to do so for every gem should they be taken down from RubyGems. License Finder automates checking of gems to ensure that we're in the clear legally.
      
      Approved the MIT License because it essentially allows us to do "whatever" with those gems.
      
      I am not a lawyer.
      
      https://github.com/pivotal/LicenseFinder
      b51b1450
    • Timothy Andrew's avatar
      Update the `browser` gem. · e5823f36
      Timothy Andrew authored
      - Need the `mobile?` detection (that the new version provides) for the
        U2F registration/ authentication flow
      e5823f36
    • Timothy Andrew's avatar
      Add a `U2fRegistrations` table/model. · 791cc913
      Timothy Andrew authored
      - To hold registrations from U2F devices, and to authenticate them.
      - Previously, `User#two_factor_enabled` was aliased to the
        `otp_required_for_login` column on `users`.
      - This commit changes things a bit:
          - `User#two_factor_enabled` is not a method anymore
          - `User#two_factor_enabled?` checks both the
            `otp_required_for_login` column, as well as `U2fRegistration`s
          - Change all instances of `User#two_factor_enabled` to
            `User#two_factor_enabled?`
      - Add the `u2f` gem, and implement registration/authentication at the
        model level.
      791cc913
  15. 03 Jun, 2016 7 commits
  16. 01 Jun, 2016 1 commit
  17. 31 May, 2016 1 commit
  18. 30 May, 2016 2 commits