1. 19 Jan, 2016 8 commits
    • Yorick Peterse's avatar
      Greatly improve external_issue_tracker performance · b4ee6f57
      Yorick Peterse authored
      This greatly improves the performance of Project#external_issue_tracker
      by moving most of the fields queried in Ruby to the database and letting
      the database handle all logic. Prior to this change the process of
      finding an external issue tracker was along the lines of the following:
      
      1. Load all project services into memory.
      2. Reduce the list to only services where "issue_tracker?" returns true
      3. Reduce the list from step 2 to service where "default?" returns false
      4. Find the first service where "activated?" returns true
      
      This has to two big problems:
      
      1. Loading all services into memory only to reduce the list down to a
         single item later on is a waste of memory (and slow timing wise).
      2. Calling Array#select followed by Array#reject followed by Array#find
         allocates extra objects when this really isn't needed.
      
      To work around this the following service fields have been moved to the
      database (instead of being hardcoded):
      
      * category
      * default
      
      This in turn means we can get the external issue tracker using the
      following query:
      
          SELECT *
          FROM services
          WHERE active IS TRUE
          AND default IS FALSE
          AND category = 'issue_tracker'
          AND project_id = XXX
          LIMIT 1
      
      This coupled with memoizing the result (just as before this commit)
      greatly reduces the time it takes for Project#external_issue_tracker to
      complete. The exact reduction depends on one's environment, but locally
      the execution time is reduced from roughly 230 ms to only 2 ms (= a
      reduction of almost 180x).
      
      Fixes gitlab-org/gitlab-ce#10771
      b4ee6f57
    • Robert Speicher's avatar
      Merge branch 'warning-pending-migrations' into 'master' · 2becc6fa
      Robert Speicher authored
      Raise an error on page load when there are pending migrations in
      development mode.
      
      Fixes #5990 
      
      See merge request !2491
      2becc6fa
    • Dmitriy Zaporozhets's avatar
      Merge branch 'browse-issues-incorrect-positioning-in-firefox-on-commit-page' into 'master' · 0782ca77
      Dmitriy Zaporozhets authored
      Fix positioning issues with browse files button
      
      Issue is that in Firefox clipboard is blocking the browse files
      from moving all the way to the right.
      Move clipboard up 1px into -1px to unblock "browse files"
      
      SS from firefox:
      
      ![Screen_Shot_2016-01-18_at_4.01.58_PM](/uploads/312a5f1e55ca707081f718e2413416fb/Screen_Shot_2016-01-18_at_4.01.58_PM.png)
      
      Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/10849
      
      
      See merge request !2489
      0782ca77
    • Douglas Barbosa Alexandre's avatar
    • Douglas Barbosa Alexandre's avatar
    • Dmitriy Zaporozhets's avatar
      Merge branch 'search-title-clipped' into 'master' · 3d7994a7
      Dmitriy Zaporozhets authored
      Search title gets clipped vertically.
      
      Fixed by adding height to search title css.
      
      **Before:**
      ![Screen_Shot_2016-01-16_at_10.12.14_AM](/uploads/2651de6ae38251e1f20acade0c69a629/Screen_Shot_2016-01-16_at_10.12.14_AM.png)
      
      **After:**
      ![Screen_Shot_2016-01-16_at_10.12.05_AM](/uploads/6852e9a653bde1975d7fdfa4dbc302d8/Screen_Shot_2016-01-16_at_10.12.05_AM.png)
      
      See merge request !2460
      3d7994a7
    • Dmitriy Zaporozhets's avatar
      Merge branch 'sorting-dropdown-does-not-fit-filter-bar' into 'master' · 4d31789e
      Dmitriy Zaporozhets authored
      Reduce margin to fit dropdowns
      
      ![Screen_Shot_2016-01-18_at_7.51.23_PM](/uploads/03336f86fde25d6d045742297a19751c/Screen_Shot_2016-01-18_at_7.51.23_PM.png)
      
      Fixes #10747 
      
      See merge request !2492
      4d31789e
    • Jacob Schatz's avatar
      Reduce margin to fit dropdowns · 1133251f
      Jacob Schatz authored
      Fixes #10747
      1133251f
  2. 18 Jan, 2016 32 commits