An error occurred fetching the project authors.
  1. 04 Jul, 2016 2 commits
  2. 01 Jul, 2016 1 commit
  3. 30 Jun, 2016 2 commits
  4. 27 Jun, 2016 1 commit
  5. 23 Jun, 2016 1 commit
  6. 20 Jun, 2016 2 commits
  7. 16 Jun, 2016 4 commits
  8. 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
  9. 03 Jun, 2016 2 commits
  10. 25 May, 2016 1 commit
  11. 20 May, 2016 2 commits
  12. 18 May, 2016 1 commit
  13. 15 May, 2016 1 commit
  14. 13 May, 2016 2 commits
  15. 11 May, 2016 1 commit
  16. 10 May, 2016 1 commit
    • Rémy Coutable's avatar
      Fix a few places where autoloading would fail · 5589dcf8
      Rémy Coutable authored
      - Fix naming of API::CommitStatuses
      - Ensure we use require_dependency instead of require
      - Ensure the namespace is right in lib/api/api.rb, otherwise, we
        might require Grape::API::Helpers which defines the `#params` method.
        This is to avoid requiring a file multiple times and getting an "Already
        initialized constant" error.
      Signed-off-by: default avatarRémy Coutable <remy@rymai.me>
      5589dcf8
  17. 04 May, 2016 2 commits
  18. 29 Apr, 2016 2 commits
  19. 26 Apr, 2016 1 commit
  20. 25 Apr, 2016 1 commit
  21. 18 Apr, 2016 3 commits
  22. 15 Apr, 2016 1 commit
  23. 13 Apr, 2016 1 commit
    • Stan Hu's avatar
      Fix repository cache invalidation issue when project is recreated with an empty repo · 2ce7559d
      Stan Hu authored
      To reproduce:
      
      1. Create a project with some content
      2. Rename the project
      3. Create a new project with the same name.
      4. Boom - 404.
      
      After step 2, the branch and tag counts were not being cleared. This would
      cause `repository.has_visible_content?` to erroneously return `true`
      for the newly-created project.
      
      Closes #13384
      2ce7559d
  24. 11 Apr, 2016 3 commits
  25. 09 Apr, 2016 1 commit