1. 14 5月, 2016 8 次提交
  2. 13 5月, 2016 25 次提交
  3. 12 5月, 2016 7 次提交
    • R
      Merge branch 'fix/reuse-runner-edit-form-in-admin-area' into 'master' · 66824e09
      Rémy Coutable 提交于
      Reuse runners edit form in admin and project area
      
      Reuse runners edit form in admin and project area.
      
      ![reuse_runner_form](/uploads/d16e3ee196151b68f584d947f38a7c29/reuse_runner_form.png)
      
      See merge request !4094
      66824e09
    • R
      Merge branch 'total-method-time' into 'master' · 5298c3cc
      Rémy Coutable 提交于
      Removed tracking of total method execution times
      
      See #17239 and 945c5b3f for more details. The Grafana dashboards used to visualize performance data were updated a while ago to no longer display this data.
      
      See merge request !4124
      5298c3cc
    • S
      Only show forks for users who can download code · 827fbc10
      Sean McGivern 提交于
      The ForksController enforces this, so don't show the link if it won't go
      anywhere.
      827fbc10
    • R
      Merge branch '3870-commit-sorting-issue' into 'master' · a9cc14e0
      Rémy Coutable 提交于
      Group commits by date in server timezone
      
      `Time#to_date` just takes the (timezone-less) year, date, and month, and
      creates a new date from that. Because the commits in the list are
      grouped by date, rather than chunked when the date changes, a commit can
      be shown in the wrong order if its CommitDate has a timezone-less date
      that's different to other commits around it.
      
      Convert all CommitDates to the server timezone before grouping, as that
      will at least produce consistent results. Users can still see a
      timestamp on the commit that doesn't match the date it's grouped under,
      because the timestamp shown uses the user's local timezone, and the
      grouping uses the server's timezone, but that was an issue anyway.
      
      ### Before
      ![image](/uploads/1ffe0e2f86e03590cb96126d4f340436/image.png)
      
      ### After
      ![image](/uploads/b1be1b08782385d13c56528242a5829b/image.png)
      
      Closes #3870 and closes #17300.
      
      See merge request !4052
      a9cc14e0
    • K
      Fix specs · 5bd356eb
      Kamil Trzcinski 提交于
      5bd356eb
    • M
      Merge branch 'patch-2' into 'master' · 9393d6b6
      Marin Jankovski 提交于
      Update cas.md to reflect the current syntax, and added that gitlab-ctl reconfigure should be run.
      
      I spent a while trying to figure our why the cas wasn't working!
      
      Someone may need to update the source code section of the wiki
      
      See merge request !3850
      9393d6b6
    • Y
      Removed tracking of total method execution times · 945c5b3f
      Yorick Peterse 提交于
      Because method call timings are inclusive (that is, they include the
      time of any sub method calls) this would lead to the total method
      execution time often being far greater than the total transaction time.
      Because this is incredibly confusing it's best to simply _not_ track the
      total method execution time, after all it's not that useful to begin
      with.
      
      Fixes gitlab-org/gitlab-ce#17239
      945c5b3f