BigW Consortium Gitlab

  1. 11 Jul, 2016 1 commit
  2. 10 Jul, 2016 1 commit
  3. 08 Jul, 2016 1 commit
  4. 04 Jul, 2016 2 commits
  5. 03 Jul, 2016 1 commit
  6. 02 Jul, 2016 1 commit
  7. 01 Jul, 2016 6 commits
  8. 30 Jun, 2016 4 commits
  9. 29 Jun, 2016 5 commits
  10. 27 Jun, 2016 1 commit
  11. 24 Jun, 2016 1 commit
  12. 23 Jun, 2016 4 commits
  13. 22 Jun, 2016 1 commit
    • Replace Haml with Hamlit. · 80f576bb
      connorshea authored
      Hamlit is a library that's faster than Haml while implementing most of its features: https://github.com/k0kubun/hamlit
      
      Not sure if this breaks anything, but as far as I can tell most things work the same. No obvious regressions that I've been able to find.
  14. 21 Jun, 2016 1 commit
  15. 20 Jun, 2016 1 commit
  16. 16 Jun, 2016 4 commits
  17. 14 Jun, 2016 1 commit
  18. 13 Jun, 2016 3 commits
  19. 12 Jun, 2016 1 commit
    • 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