BigW Consortium Gitlab

  1. 31 Jan, 2017 2 commits
  2. 18 Jan, 2017 2 commits
  3. 04 Jan, 2017 2 commits
  4. 03 Jan, 2017 2 commits
  5. 31 Dec, 2016 4 commits
  6. 28 Dec, 2016 1 commit
  7. 16 Dec, 2016 1 commit
  8. 15 Dec, 2016 1 commit
    • Changed autocomplete_sources into an action that returns a single 'at' type of sources at a time · 1356e40f
      Luke Bennett authored
      Finished up autocomplete_sources action and added frontend to fetch data only when its needed
      
      Added wait_for_ajax to specs
      
      Fixed builds and improved the setup/destroy lifecycle
      
      Changed global namespace and DRYed up loading logic
      
      Added safety for accidentally loading data twice
      
      Removed destroy as its not necessary and is messing with click events from a blur race condition
      
      Created AutocompleteSourcesController and updated routes
      
      Fixed @undefined from tabbing before load ends
      
      Disable tabSelectsMatch until we have loaded data
      
      Review changes
  9. 09 Dec, 2016 1 commit
  10. 05 Dec, 2016 1 commit
    • Fix Archived project merge requests add to group's Merge Requests · 4d26ab28
      Jacopo authored
      counter
      
      This is done by:
       - Extending the IssuableFinder adding the non_archived option to the params
       - Overriding the #filter_params in the MergeRequestsAction
       - Passing the non_archived param in the nav/_group.html.haml navbar
         partial from the groups/merge_requests.html.haml
  11. 01 Dec, 2016 2 commits
  12. 29 Nov, 2016 2 commits
  13. 26 Nov, 2016 1 commit
  14. 25 Nov, 2016 1 commit
  15. 17 Nov, 2016 3 commits
  16. 16 Nov, 2016 2 commits
  17. 10 Nov, 2016 1 commit
  18. 08 Nov, 2016 1 commit
  19. 03 Nov, 2016 1 commit
  20. 01 Nov, 2016 1 commit
  21. 26 Oct, 2016 1 commit
  22. 19 Oct, 2016 1 commit
  23. 16 Oct, 2016 1 commit
  24. 15 Oct, 2016 2 commits
  25. 14 Oct, 2016 1 commit
  26. 11 Oct, 2016 1 commit
  27. 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.