Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-04-05Add option to start a new discussion on an MRDouwe Maan
2017-02-07Add 'View on [env]' link to blobs and individual files in diffsDouwe Maan
2016-12-31HAMLLint: Fix `ImplicitDiv` offencesKushal Pandya
2016-10-28Finish styling commits viewAnnabel Dunstone Gray
2016-10-07Added subnav to labels edit+new and milestones edit+new+showLuke Bennett
Added subnav to blame show, blob edit, builds show, commit builds, commit show, environments edit and pipelines show Added subnav to new enviro view Added sidebar top position calculation logic Added sidebar translation to follow the subnav up when the body is scrolled until a certain limit
2016-08-03Introduce Compare model in the codebase.Paco Guzman
This object will manage Gitlab::Git::Compare instances
2016-08-03Cache highlighted diff lines for merge requestsPaco Guzman
Introducing the concept of SafeDiffs which relates diffs with UI highlighting.
2016-07-07Represent DiffRefs as proper class instead of tuple arrayDouwe Maan
2016-05-26Remove header title from project pagesDmitriy Zaporozhets
With new navigation design it makes no sense to duplicate title in the header Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2016-04-21Merge branch 'ci-commit-as-pipeline' into 'master' Kamil Trzciński
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
2016-04-18Add support to cherry-pick any commitP.S.V.R
Issue: https://gitlab.com/gitlab-org/gitlab-ce/issues/12785 Merge Request: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/3514
2016-04-12Use Ci::Commit as PipelineKamil Trzcinski
2016-02-19Some updates from last code review.Rubén Dávila
2016-02-19Use a custom title in the revert modal.Rubén Dávila
2016-02-19Reuser revert commit modal in MR detail page.Rubén Dávila
2016-02-19Add button to revert commit on Commit detail page.Rubén Dávila
2016-01-15Merge branch 'master' into issue_3945Rubén Dávila
2016-01-13Replace all navigation menu with nav-links classDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2016-01-08Change strategy to highlight diffs. #3945Rubén Dávila
Now we apply syntax highlighting to the whole old and new files. This basically help us to highlight adequately multiline content.
2015-12-25Add Open Graph data for group, project and commit.Douwe Maan
2015-12-02Remove double border between gray blocksDouwe Maan
2015-11-17Don't use params[:view] directly.Douwe Maan
2015-10-06Render CI statuses on commit pageDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-09-17Move project header title definition to view in question.Douwe Maan
2015-06-16Support commenting on a diff in side-by-side viewStan Hu
Closes https://github.com/gitlabhq/gitlabhq/issues/9283
2015-04-30Include commit message in page title.Douwe Maan
2015-04-30Add a page title to every page.Douwe Maan
2014-09-08Use new diff parsing logicDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-07-15Refactor diff suppress logic and diff viewsDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2013-07-30Merge branch 'mr-on-fork' of https://github.com/karlhungus/gitlabhq into ↵Dmitriy Zaporozhets
karlhungus-mr-on-fork Conflicts: app/views/projects/commit/show.html.haml app/views/projects/compare/show.html.haml app/views/projects/merge_requests/branch_from.js.haml
2013-07-18squash commit summary in one sentenceDmitriy Zaporozhets
2013-07-18MR on Fork multiple fixesIzaak Alpert
-Disable observers post test run -Allow db:seed_fu RAILS_ENV=test to be run more than once without error -fix diffs_in_between, was passing in the default_options for grit, but grit in this case doesn't take options, fixed the test to actually fail if the incorrect diffs are returned -make notes/commits render against proper project -MR discussion file links should reference note's project -Added tests for commit links on edit merge request -fixes edit issues (canceling an edited mr, updating an edited mr) -updates tests with checks for source code updates -still forked_merge_requests.feature (project_forked_merge_requests) test not passing (commented out -- "stable" not being set) MR API: error on bad target_project -If the target project id is specified and it is not the same as the project the request is being made on (the source), and the it isn't a fork of that project, error out, otherwise use it as the target -Fixes some busted (but hidden) test cases Conflicts: app/views/merge_requests/show/_diffs.html.haml spec/features/notes_on_merge_requests_spec.rb Change-Id: I20e595c156d0e8a63048baaead7be6330c738a05
2013-06-23Move projects controllers/views in Projects moduleDmitriy Zaporozhets