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
2018-07-11Resolve "Rename the `Master` role to `Maintainer`" BackendMark Chao
2018-07-05Enable Capybara/FeatureMethods copWinnie Hellmann
2018-05-22Unify spec/features/projects/blobs/blob_show_spec.rbLin Jen-Shin
2018-04-24Allow admins to push to empty reposBob Van Landuyt
2018-03-14Include feature spec for realtime pipelineMayra Cabrera
2018-03-14Add realtime pipeline status component for filesJose Ivan Vargas
2018-01-29Replace $.post in edit blob with axiosClement Ho
2017-12-22Replace '.team << [user, role]' with 'add_role(user)' in specsblackst0ne
2017-11-22Add edit button to mobile file viewTravis Miller
2017-10-19Check for element before evaluate_scriptEric Eastwood
Tip from https://robots.thoughtbot.com/write-reliable-asynchronous-integration-tests-with-capybara#directly-interacting-with-javascript
2017-10-07Replaces `tag: true` into `:tag` in the specsJacopo
Replaces all the explicit include metadata syntax in the specs (tag: true) into the implicit one (:tag). Added a cop to prevent future errors and handle autocorrection.
2017-08-01Ensure all project factories use `:repository` trait or `:empty_project`Robert Speicher
2017-07-27Use `empty_project` where possible in spec/features/projectsRobert Speicher
2017-07-27Remove superfluous type defs in specsKeifer Furzland
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-07-27Fix the :project factory by not copying the test repo twiceRémy Coutable
Also, fixing some calls to the :project factory with the :test_repo trait since this trait is already included in the :project factory. Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-07-06Auto-correct ProjectPathHelper violationsRobert Speicher
2017-06-29Change gitlab_sign_in to sign_in where possibleRobert Speicher
2017-06-23Revert "Annotate" to "Blame"Stan Hu
2017-06-20Change `login_as` uses to `gitlab_sign_in`Robert Speicher
2017-06-14Implement diff viewersDouwe Maan
2017-06-09Revert 'New file from interface on existing branch'Douwe Maan
2017-06-08Detect if file that appears to be text in the first 1024 bytes is actually ↵Douwe Maan
binary afer loading all data
2017-06-02Promote blameless culture by using "annotate" insteadIlya Vassilevsky
User-facing changes (fast & easy win)
2017-05-23Use wait_for_requests to wait all JS requestOswaldo Ferreira
2017-05-18Fix inaccurate code commentDouwe Maan
2017-05-17Add auxiliary blob viewers to dependency filesDouwe Maan
2017-05-11Implement auxiliary blob viewersDouwe Maan
2017-05-03Refactor Blob support of external storage in preparation of job artifact blobsDouwe Maan
2017-05-02Fixed PDF blob specsPhil Hughes
The PDF file is no longer included in the repo, so we need to create the PDF before running the tests
2017-04-30Show Raw button as Download for binary filesDouwe Maan
2017-04-30Use blob viewers for snippetsDouwe Maan
2017-04-27Address feedbackDouwe Maan
2017-04-27Add specsDouwe Maan
2017-04-27Render viewer error synchronously so that 'view the source' link will workDouwe Maan
2017-04-27Add specsDouwe Maan
2017-04-21Unnecessary "include WaitForAjax" and "include ApiHelpers"Jacopo
Removed all the unnecessary include of `WaitForAjax` and `ApiHelpers` in the specs. Removed unnecessary usage of `api:true`
2017-04-20Refactor changing files in web UIDouwe Maan
2017-04-06Fix rspec and spinach testsJose Ivan Vargas
2017-04-06Linking to edit file directlyEric Eastwood
2017-04-03Make file templates easy to use and discoverBryce Johnson
2017-03-21New directory from interface on existing branchJacopo
The user can create a new directory on a different branch than the source branch when the branch already exists.
2017-03-13Merge branch '19742-permalink-blame-button-line-number-hash-links' into ↵Alfredo Sumaran
'master' Update permalink/blame buttons with line number fragment hash Closes #19742 See merge request !9461
2017-03-13Update permalink/blame buttons with line number fragment hashEric Eastwood
Fix https://gitlab.com/gitlab-org/gitlab-ce/issues/19742
2017-03-13New file from interface on existing branchJacopo
Now you can create a new file and select a target_branch != source_branch. If the file that you want to create already exists on the target branch an error message is shown A glDropdown is used to select and create a new branch instead of a text field.
2017-02-07Add keyboard shortcut to move to file permalinkEric Eastwood
Fix https://gitlab.com/gitlab-org/gitlab-ce/issues/8082
2016-11-29Merge branch 'jej-22869' into 'security'Douwe Maan
Fix information disclosure in `Projects::BlobController#update` It was possible to discover private project names by modifying `from_merge_request`parameter in `Projects::BlobController#update`. This fixes that. - [ ] [CHANGELOG](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CHANGELOG.md) entry added - Tests - [x] Added for this feature/bug - [ ] All builds are passing - [x] Conform by the [merge request performance guides](http://docs.gitlab.com/ce/development/merge_request_performance_guidelines.html) - [x] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides) - [x] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits) https://gitlab.com/gitlab-org/gitlab-ce/issues/22869 See merge request !2023