BigW Consortium Gitlab

  1. 08 Apr, 2014 1 commit
  2. 18 Mar, 2014 1 commit
  3. 14 Mar, 2014 1 commit
  4. 03 Mar, 2014 1 commit
  5. 24 Feb, 2014 2 commits
  6. 23 Feb, 2014 2 commits
  7. 22 Feb, 2014 1 commit
  8. 18 Feb, 2014 2 commits
  9. 14 Feb, 2014 1 commit
    • Add email aliases for users · 29cfd33d
      Jason Hollingsworth authored
      Emails are used to associate commits with users. The emails
      are not verified and don't have to be valid email addresses. They
      are assigned on a first come, first serve basis.
      
      Notifications are sent when an email is added.
  10. 11 Feb, 2014 1 commit
  11. 23 Jan, 2014 2 commits
  12. 14 Jan, 2014 1 commit
  13. 23 Dec, 2013 1 commit
  14. 17 Dec, 2013 1 commit
  15. 16 Dec, 2013 1 commit
    • Archiving old projects; archived projects aren't shown on dashboard · 37383966
      Steven Thonus authored
      features for archive projects
      abilities for archived project
      other abilities for archive projects
      
      only limit commits and merges for archived projects
      
      ability changed to prohibited actions on archived projects
      
      added spec and feature tests for archive projects
      
      changed search bar not to include archived projects
  16. 04 Dec, 2013 1 commit
  17. 30 Nov, 2013 1 commit
  18. 28 Nov, 2013 1 commit
  19. 27 Nov, 2013 1 commit
  20. 21 Nov, 2013 1 commit
  21. 17 Nov, 2013 1 commit
  22. 05 Nov, 2013 1 commit
  23. 01 Nov, 2013 1 commit
  24. 14 Oct, 2013 1 commit
  25. 11 Oct, 2013 2 commits
  26. 29 Sep, 2013 1 commit
  27. 27 Sep, 2013 1 commit
  28. 26 Sep, 2013 2 commits
  29. 25 Sep, 2013 2 commits
  30. 13 Sep, 2013 1 commit
  31. 12 Sep, 2013 1 commit
    • Fix bug with rendering changing images in commits · 0a05ab91
      Ryan Mendivil authored
      When viewing the diff for a changed image file, two bugs occur:
      
      - Both the 'before' and 'after' images link to the 'after' commit
      - Visiting the link for either image will cause a error
      
      The first is caused by both image links referencing '@commit.id' rather
      than '@commit.parent_id'.  The second is caused by the use of
      'project_tree_path' which is used for creating links to directories in
      the git file tree. 'project_blob_path' which links to files should be
      used instead.
  32. 11 Sep, 2013 1 commit
  33. 07 Sep, 2013 1 commit
    • Improved large commit handling. · 01ff084a
      Boyan Tabakov authored
      Previously, only number of changed files mattered. Now, number of lines to render in the diff are also taken into account.
      
      A hard limit is set, above which diffs are not rendered and users are not allowed to override that. This prevents high server
      resource usage with huge commits.
      
      Related to #1745, #2259
      
      In addition, handle large commits for MergeRequests and Compare controllers.
      
      Also fixes a bug where diffs are loaded twice, if user goes directly to merge_requests/:id/diffs URL.