BigW Consortium Gitlab

  1. 24 Oct, 2016 1 commit
  2. 19 Oct, 2016 2 commits
  3. 18 Oct, 2016 2 commits
  4. 13 Oct, 2016 1 commit
  5. 11 Oct, 2016 1 commit
  6. 10 Oct, 2016 1 commit
  7. 07 Oct, 2016 1 commit
    • Enable CacheMarkdownField for the remaining models · 99205515
      Nick Thomas authored
      This commit alters views for the following models to use the markdown cache if
      present:
      
      * AbuseReport
      * Appearance
      * ApplicationSetting
      * BroadcastMessage
      * Group
      * Issue
      * Label
      * MergeRequest
      * Milestone
      * Project
      
      At the same time, calls to `escape_once` have been moved into the `single_line`
      Banzai pipeline, so they can't be missed out by accident and the work is done
      at save, rather than render, time.
  8. 04 Oct, 2016 1 commit
  9. 03 Oct, 2016 2 commits
  10. 30 Sep, 2016 1 commit
  11. 31 Aug, 2016 1 commit
  12. 04 Aug, 2016 1 commit
  13. 03 Aug, 2016 1 commit
  14. 02 Aug, 2016 2 commits
  15. 26 Jul, 2016 1 commit
  16. 24 Jul, 2016 1 commit
  17. 20 Jul, 2016 1 commit
  18. 19 Jul, 2016 2 commits
  19. 18 Jul, 2016 1 commit
  20. 16 Jul, 2016 1 commit
  21. 14 Jul, 2016 2 commits
  22. 13 Jul, 2016 3 commits
  23. 10 Jul, 2016 2 commits
  24. 05 Jul, 2016 1 commit
  25. 30 Jun, 2016 1 commit
    • Handle external issues in IssueReferenceFilter · a4ce2d12
      Yorick Peterse authored
      IssueReferenceFilter will end up processing internal issue references
      when a project uses an external issues tracker while still using
      internal issue references (in the form of `#\d+`). This commit ensures
      that these links are rendered as external issue links, regardless of
      whether the project one currently views uses an internal or external
      issues tracker.
      
      Fixes gitlab-org/gitlab-ce#19036, gitlab-com/performance#16
  26. 27 Jun, 2016 1 commit
  27. 21 Jun, 2016 2 commits
    • Handle external issues in IssueReferenceFilter · ceeba75c
      Yorick Peterse authored
      In the past this class would use Project#get_issue to retrieve an issue
      by its ID. This method would automatically determine whether to return
      an Issue or ExternalIssue.
      
      This commit changes IssueReferenceFilter to handle external issues again
      and in a somewhat more explicit manner than before.
      
      Fixes gitlab-org/gitlab-ce#18827
    • Optimize Banzai::Filter::RelativeLinkFilter · ca696175
      Alejandro Rodríguez authored
          A lot of git operations were being repeated, for example, to build a url
          you would ask if the path was a Tree, which would call a recursive routine
          in Gitlab::Git::Tree#where, then ask if the path was a Blob, which would
          call a recursive routine at Gitlab::Git::Blob#find, making reference to
          the same git objects several times. Now we call Rugged::Tree#path, which
          allows us to determine the type of the path in one pass.
      
          Some other minor improvement added, like saving commonly used references
          instead of calculating them each time.
  28. 18 Jun, 2016 2 commits
  29. 16 Jun, 2016 1 commit