1. 21 Apr, 2016 2 commits
    • Kamil Trzciński's avatar
      Merge branch 'ci-commit-as-pipeline' into 'master' · d2406668
      Kamil Trzciński authored
      Ci::Commit becomes a Pipeline object
      
      1. Ci::Commit receives context: ref, :tag.
      1. One Ci::Commit describes a one Pipeline
      1. Pipeline is created from `.gitlab-ci.yml`
      1. Pipeline is a ordered group of builds
      1. We test MR against Pipeline
      1. Pipelines have a separate view (https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/3703)
      1. Pipeline can be triggered from UI (https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/3703)
      1. Later we change `Trigger -> TriggerRequest -> Build` to `Trigger -> Pipeline` (future)
      1. We add a Pipeline Hook that will be triggered on Pipeline status change  (future)
      1. We extend notifications to use `Pipeline Hook` to send summary on pipeline changes (future)
      
      After merging that I'll prepare a separate MR that will unify naming, database columns, table names:
      ```
      Ci::Commit -> Pipeline
      Ci::Build -> Build
      CommitStatus -> Job
      GenericCommitStatus -> ExternalJob
      
      ci_commits -> pipelines
      ci_builds -> jobs
      ```
      
      This MR implements first 5 points.
      
      This is made to solve this issue https://gitlab.com/gitlab-org/gitlab-ce/issues/14149.
      
      See merge request !3653
      d2406668
    • Jacob Schatz's avatar
      Merge branch 'disable_spellcheck_for_username_field' into 'master' · 2ade37e2
      Jacob Schatz authored
      Disable spellcheck and autocorrect for username field in admin page
      
      closes #14855
      
      ## before
      ![Screen_Shot_2016-04-19_at_9.25.12_AM](/uploads/19387c4a11a879e9034a2179e932436e/Screen_Shot_2016-04-19_at_9.25.12_AM.png)
      
      ## after
      ![Screen_Shot_2016-04-19_at_9.25.47_AM](/uploads/60f4eba6a97201333dc64e46d625aac2/Screen_Shot_2016-04-19_at_9.25.47_AM.png)
      
      See merge request !3730
      2ade37e2
  2. 20 Apr, 2016 38 commits