1. 13 8月, 2016 17 次提交
  2. 11 8月, 2016 3 次提交
    • C
      ecb3f1eb
    • K
      Pre-create all builds for Pipeline when a trigger is received · 39203f1a
      Kamil Trzcinski 提交于
      This change simplifies a Pipeline processing by introducing a special new status: created.
      This status is used for all builds that are created for a pipeline.
      We are then processing next stages and queueing some of the builds (created -> pending) or skipping them (created -> skipped).
      This makes it possible to simplify and solve a few ordering problems with how previously builds were scheduled.
      This also allows us to visualise a full pipeline (with created builds).
      
      This also removes an after_touch used for updating a pipeline state parameters.
      Right now in various places we explicitly call a reload_status! on pipeline to force it to be updated and saved.
      39203f1a
    • C
      Fix branches page dropdown sort initial state · 88877afd
      Clement Ho 提交于
      88877afd
  3. 10 8月, 2016 3 次提交
  4. 09 8月, 2016 2 次提交
  5. 08 8月, 2016 1 次提交
  6. 05 8月, 2016 1 次提交
  7. 04 8月, 2016 2 次提交
  8. 03 8月, 2016 5 次提交
  9. 02 8月, 2016 3 次提交
    • P
      Speedup DiffNote#active? on discussions, preloading noteables and avoid... · 8716ff7f
      Paco Guzman 提交于
      Speedup DiffNote#active? on discussions, preloading noteables and avoid touching git repository to return diff_refs when possible
      
      - Preloading noteable we share the same noteable instance when more than one 
      discussion refers to the same noteable.
      - Any other call to that object that is cached in that object will be for any 
      discussion.
      - In those cases where merge_request_diff has all the sha stored to build a diff_refs get that 
      diff_refs using directly those sha instead accessing to the git repository to first get the 
      commits and later the sha.
      8716ff7f
    • R
      Remove `url_for_new_issue` helper · 901d4d2c
      Robert Speicher 提交于
      Now we link to the standard `IssuesController#new` action, and let it
      redirect if we're using an external tracker.
      901d4d2c
    • R
      Redirect to external issue tracker from `/issues` · a70431f8
      Robert Speicher 提交于
      Prior, in order to display the correct link to "Issues" in the project
      navigation, we were performing a check against the project to see if it
      used an external issue tracker, and if so, we used that URL. This was
      inefficient.
      
      Now, we simply _always_ link to `namespace_project_issues_path`, and
      then in the controller we redirect to the external tracker if it's
      present.
      
      This also removes the need for the url_for_issue helper. Bonus! 🎉
      a70431f8
  10. 01 8月, 2016 2 次提交
    • Z
      State specific default sort order for issuables · 84a3225b
      zs 提交于
      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       |
      84a3225b
    • Z
      Minor fixes in the Env API endpoints · 34c1c8a3
      Z.J. van de Weg 提交于
      34c1c8a3
  11. 29 7月, 2016 1 次提交