BigW Consortium Gitlab

  1. 11 May, 2017 1 commit
  2. 10 May, 2017 1 commit
  3. 08 May, 2017 2 commits
  4. 04 May, 2017 3 commits
  5. 27 Apr, 2017 1 commit
  6. 24 Mar, 2017 1 commit
    • Refactored the user callout class · 3eedb2ae
      Phil Hughes authored
      Instead of the JS being in charge of the HTML, the HAML now handles it.
      The HAML can then check the cookie & show it needed. It also allows the
      HAML access to the paths so we don't have to pass that through.
      
      Closes #29955
  7. 23 Feb, 2017 2 commits
  8. 15 Feb, 2017 1 commit
  9. 10 Feb, 2017 1 commit
    • Formats timeago dates to be more friendly · 8aa757aa
      Phil Hughes authored
      Formats the timeago timestamps to be a short date. This will only be
      visible on slower connections whilst the JS is loading, after the
      JS has loaded it will be turned into a timeago string
      
      Closes #27537
  10. 03 Feb, 2017 1 commit
  11. 09 Jan, 2017 1 commit
  12. 20 Dec, 2016 1 commit
  13. 19 Dec, 2016 1 commit
  14. 07 Nov, 2016 1 commit
  15. 30 Sep, 2016 2 commits
  16. 22 Sep, 2016 3 commits
  17. 20 Sep, 2016 1 commit
  18. 01 Sep, 2016 1 commit
  19. 17 Aug, 2016 1 commit
  20. 04 Aug, 2016 1 commit
  21. 01 Aug, 2016 1 commit
    • State specific default sort order for issuables · 84a3225b
      zs authored
      Provide more sensible default sort order for issues and merge requests
      based on the following table:
      
      | type           | state  | default sort order |
      |----------------|--------|--------------------|
      | issues         | open   | last created       |
      | issues         | closed | last updated       |
      | issues         | all    | last created       |
      | merge requests | open   | last created       |
      | merge requests | merged | last updated       |
      | merge requests | closed | last updated       |
      | merge requests | all    | last created       |
  22. 06 Jul, 2016 1 commit
  23. 22 Jun, 2016 1 commit
    • Replace Haml with Hamlit. · 80f576bb
      connorshea authored
      Hamlit is a library that's faster than Haml while implementing most of its features: https://github.com/k0kubun/hamlit
      
      Not sure if this breaks anything, but as far as I can tell most things work the same. No obvious regressions that I've been able to find.
  24. 20 Jun, 2016 1 commit
  25. 18 Jun, 2016 1 commit
  26. 03 Jun, 2016 2 commits
  27. 24 May, 2016 1 commit
  28. 23 May, 2016 1 commit
  29. 16 May, 2016 4 commits
    • Fixed failing rubocop tests · 31b1dc3c
      Phil Hughes authored
      Fixed issue with issuable checkboxs not being init'd
    • Fixed tests · 1a086745
      Phil Hughes authored
    • Fixed Ruby issues · 3a76cc5c
      Phil Hughes authored
    • Issuable filtering improvements · 832d7fa3
      Phil Hughes authored
      This improves the filtering of issues and merge requests by creating a single file that encapsulates all the filtering. Previously this was done with a file for issues and a file for merge requests.
      
      Created the ability for the text search to be done alongside other filterables. Previously because this was outside the filterable form, this wasn't possible and would instead do either filter dropdown or text filter - not both.