1. 08 7月, 2016 7 次提交
  2. 07 7月, 2016 3 次提交
  3. 04 7月, 2016 2 次提交
  4. 02 7月, 2016 1 次提交
  5. 30 6月, 2016 2 次提交
  6. 28 6月, 2016 1 次提交
  7. 24 6月, 2016 1 次提交
  8. 21 6月, 2016 2 次提交
  9. 17 6月, 2016 1 次提交
  10. 16 6月, 2016 3 次提交
  11. 12 6月, 2016 1 次提交
    • S
      Fix Error 500 when viewing a blob with binary characters after the 1024-byte mark · 0fdfd2dd
      Stan Hu 提交于
      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. 03 6月, 2016 2 次提交
  13. 26 5月, 2016 1 次提交
  14. 21 5月, 2016 2 次提交
  15. 19 5月, 2016 1 次提交
  16. 15 5月, 2016 1 次提交
  17. 14 5月, 2016 1 次提交
  18. 13 5月, 2016 1 次提交
  19. 11 5月, 2016 1 次提交
  20. 10 5月, 2016 1 次提交
    • R
      Fix a few places where autoloading would fail · 5589dcf8
      Rémy Coutable 提交于
      - 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: NRémy Coutable <remy@rymai.me>
      5589dcf8
  21. 04 5月, 2016 2 次提交
  22. 29 4月, 2016 2 次提交
  23. 27 4月, 2016 1 次提交