BigW Consortium Gitlab

  1. 25 Nov, 2016 12 commits
    • Change diff highlight/truncate for reusability · f928dba9
      hhoopes authored
      Previously the `truncated_diff_lines` method for outputting a discussion diff took in already highlighted lines, which meant it wasn't reuseable for truncating ANY lines. In the way it was used, it also meant that for any email truncation, the whole diff was being highlighted before being truncated, meaning wasted time highlighting lines that wouldn't even be used (granted, they were being memoized, so perhaps this wasn't that great of an issue). I refactored truncation away from highlighting, in order to truncate formatted diffs for text templates in email, using `>`s to designate each line, but otherwise retaining the parsing already done to create `diff_lines`.
      
      Additionally, while notes on merge requests or commits had already been tested, there was no existing test for notes on a diff on an MR or commit. Added mailer tests for such, and a unit test for truncating diff lines.
    • Add new template to handle both commit & mr notes · 24070bac
      hhoopes authored
      Currently comments on commits and merge requests do not require merge request- or commit-specific information, but can use the same template. Rather than change the method which calls the template, I opted to keep the templates separate and create a new template to highlight their identicality, while preserving the option to distinguish them from each other in the future.
      
      Also removed some of the inconsistencies between text and html email versions.
      
      Still needed is a text-only version of git diffs and testing.
    • Add diff hunks to notification emails on MR · 38ed96e9
      hhoopes authored
      Added diff hunks to notification emails of messages on merge requests. This
      provides code context to the note. Uses existing template for formatting
      a diff for email (from repository push notifications).
    • Merge branch '22373-reduce-queries-in-api-helpers-find_project' into 'master' · 838c1aad
      Yorick Peterse authored
      Resolve "Reduce queries in API::Helpers#find_project"
      
      See merge request !7714
    • Merge branch 'fix-cancelling-pipelines' into 'master' · afe90d52
      Kamil Trzciński authored
      Improve how we could cancel pipelines:
      
      Improve how we could cancel pipelines:
      
      * Introduce `HasStatus.cancelable` which we might be able to cancel
      * Cancel and check upon `cancelable`
      * Also cancel on `CommitStatus` rather than just `Ci::Build`
      
      Fixes #23635
      
      Fixes #17845
      
      See merge request !7508
    • Merge branch 'autocomplete-space-prefix' into 'master' · 90a3b3ab
      Fatih Acet authored
      Allow GFM autocomplete to be trigger without the preceding space
      
      ## What does this MR do?
      
      Gives the ability to GFM autocomplete to be trigger even if there is no preceding space.
      
      I've taken the regex from the at.js plugin & tweaked it to allow the leading character to be a special character.
      
      ## What are the relevant issue numbers?
      
      Closes #19975 
      
      ## Screenshots (if relevant)
      
      ![Screen_Shot_2016-07-21_at_14.41.34](/uploads/19684ba286baeedb754e7457945480a8/Screen_Shot_2016-07-21_at_14.41.34.png)![Screen_Shot_2016-07-21_at_14.41.40](/uploads/a77349bce599ae93b4bcddd355087f5c/Screen_Shot_2016-07-21_at_14.41.40.png)![Screen_Shot_2016-07-21_at_14.41.46](/uploads/c35df17b678b24b73c94b181f0784188/Screen_Shot_2016-07-21_at_14.41.46.png)
      
      See merge request !5395
    • Merge branch 'issue_24748' into 'master' · c17d8d55
      Fatih Acet authored
      Fix title case to sentence case in "Add Todo"
      
      ## What does this MR do?
      Implements sentence case for `Add Todo`
      
      ## Are there points in the code the reviewer needs to double check?
      I changed the images used in the file `doc/workflow/todos.md` to show the new look.
      
      ## Why was this MR needed?
      #24748 
      
      ## Screenshots (if relevant)
      Before
      ![Screen_Shot_2016-11-21_at_12.03.21_PM](/uploads/225abe2901aacccea697596853bdc52c/Screen_Shot_2016-11-21_at_12.03.21_PM.png)
      ![Screen_Shot_2016-11-21_at_11.58.17_AM](/uploads/3a5997eb6bb037f1c581d9925fa288ce/Screen_Shot_2016-11-21_at_11.58.17_AM.png)
      
      After
      ![Screen_Shot_2016-11-21_at_12.03.38_PM](/uploads/3be4d58e5adaa10fab759f8726a4d257/Screen_Shot_2016-11-21_at_12.03.38_PM.png)
      ![Screen_Shot_2016-11-21_at_11.58.37_AM](/uploads/016cdb32cb1e87e9e3cfd89309b53a4a/Screen_Shot_2016-11-21_at_11.58.37_AM.png)
      
      
      ## Does this MR meet the acceptance criteria?
      
      - [X] [Changelog entry](https://docs.gitlab.com/ce/development/changelog.html) added
      - [X] [Documentation created/updated](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/development/doc_styleguide.md)
      - [ ] API support added
      - Tests
        - [ ] Added for this feature/bug
        - [ ] All builds are passing
      - [ ] Conform by the [merge request performance guides](http://docs.gitlab.com/ce/development/merge_request_performance_guidelines.html)
      - [ ] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides)
      - [X] Branch has no merge conflicts with `master` (if it does - rebase it please)
      - [X] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits)
      
      ## What are the relevant issue numbers?
      #24748
      
      See merge request !7724
    • Merge branch 'issue_24958' into 'master' · 2914fa39
      Rémy Coutable authored
      Fix bad selection on dropdown menu for tags filter
      
      Fixes #24958
      
      See merge request !7750
    • Merge branch 'rephrase-system-notes' into 'master' · fe4ae12e
      Robert Speicher authored
      Rephrase some system notes to be compatible with new system note style
      
      See merge request !7692
    • Merge branch 'fix/invalid-storage-cleanup-affecting-test-suite' into 'master' · 40fa5604
      Robert Speicher authored
      Make test suite deterministic when storage is involved
      
      ## What does this MR do?
      
      This MR fixes our RSpec test harness because one test example could affect subsequent examples if objects created with `let` had associated files stored in `tmp/tests`.
      
      We store files using CarrierWave, but we also have some custom storage rules for CI builds. Some time ago we introduced MR that purged CarrierWave uploads after each run of entire test suite https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/3435, but this is not enough, as we should isolate each test example to be able to rely on deterministic test suite.
      
      Not cleaning uploads between each test example run, makes it impossible to know if preconditions are correct before test example starts to run, therefore it makes test examples, that use storage, unreliable. This MR is an attempt to improve that.  
      
      ## What are the relevant issue numbers?
      
      Closes #24808
      
      See merge request !7695
    • Merge branch 'zj-upgrade-grape' into 'master' · 5522b9dc
      Robert Speicher authored
      Update grape-entity to 0.6.0
      
      See merge request !7491
  2. 24 Nov, 2016 28 commits