BigW Consortium Gitlab

  1. 03 Mar, 2016 1 commit
  2. 02 Mar, 2016 1 commit
  3. 19 Feb, 2016 1 commit
    • Add a `Blob` model that wraps `Gitlab::Git::Blob` · 8c454b36
      Robert Speicher authored
      This allows us to take advantage of Rails' `to_partial_path` to render
      the correct partial based on the Blob type, rather than cluttering the
      view with conditionals.
      
      It also allows (and will allow in the future) better encapsulation for
      Blob-related logic which makes sense for our Rails app but might not
      make as much sense for the core `gitlab_git` library, such as detecting
      if the blob is an SVG.
  4. 17 Feb, 2016 2 commits
  5. 16 Feb, 2016 1 commit
  6. 02 Feb, 2016 1 commit
  7. 01 Feb, 2016 2 commits
  8. 25 Jan, 2016 1 commit
  9. 21 Jan, 2016 1 commit
  10. 20 Jan, 2016 1 commit
  11. 14 Jan, 2016 1 commit
  12. 13 Jan, 2016 2 commits
  13. 12 Jan, 2016 1 commit
  14. 07 Jan, 2016 1 commit
  15. 31 Dec, 2015 1 commit
  16. 18 Dec, 2015 2 commits
  17. 14 Dec, 2015 1 commit
  18. 08 Dec, 2015 2 commits
  19. 07 Dec, 2015 2 commits
  20. 03 Dec, 2015 1 commit
  21. 02 Dec, 2015 7 commits
  22. 17 Nov, 2015 1 commit
  23. 10 Nov, 2015 1 commit
  24. 19 Oct, 2015 1 commit
  25. 17 Oct, 2015 1 commit
  26. 13 Oct, 2015 1 commit
  27. 07 Oct, 2015 2 commits
    • Quick Submit all the things! · de3ff174
      Robert Speicher authored
      Adds quick submit behavior to the forms for:
      
      - Blobs ("new file")
      - Commit messages
      - Issuables
      - Notes
      - Labels
      - Milestones
      - Wikis
    • Add directory feature button · 0ab6ca93
      Stan Hu authored
      Change "+" icon under "Files" section to have three options:
      
      * Create file
      * Upload file
      * New directory
      
      Upload file is no longer accessible from the "Create file" page.
      Users can now select a target branch in upload file as well.
      
      Closes #2799: Fixes a bug where file modes were overwritten after a commit
      
      Closes https://github.com/gitlabhq/gitlabhq/issues/8253: Existing files
      can no longer be overwritten in the "Create file" section.
      
      Closes #2557