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-11-02CE port of code changed for epicsJarka Kadlecova
2017-08-07Support references to group milestonesSean McGivern
Group milestones can only be referred to by name, not IID. They also do not support cross-project references.
2017-07-31Fix group milestone path on issuable sidebarSean McGivern
2017-07-09Also inject new route helpers into includers of GitlabRoutingHelperDouwe Maan
2017-07-07Resolve "Inconsistent location of members page between groups and projects"Tim Zallmann
2017-07-05Create and use project path helpers that only need a project, no namespaceDouwe Maan
2017-06-07Merge branch '12910-snippets-description' into 'master'Phil Hughes
Support descriptions for snippets Closes #31894 See merge request !11071
2017-05-31Support descriptions for snippetsJarka Kadlecova
2017-05-17Rename BuildsController to JobsControllerLin Jen-Shin
Rename other URL generators admin_builds_path -> admin_jobs_path Fix tests and more renaming Fix more tests Also change build_id to job_id in the controller
2017-05-12Consistently use monospace font for commit SHAs and branch and tag namesDouwe Maan
2017-05-08Add Pipeline Schedules that supersedes experimental Trigger ScheduleZeger-Jan van de Weg
2017-05-05Support comments for personal snippetsJarka Kadlecova
2017-05-05Merge branch 'adam-separate-slash-commands' into 'master' Rémy Coutable
Display slash commands outcome when previewing Markdown Closes #21531 See merge request !10054
2017-05-04Display slash commands outcome when previewing MarkdownRares Sfirlogea
Remove slash commands from Markdown preview and display their outcome next to the text field. Introduce new "explanation" block to our slash commands DSL. Introduce optional "parse_params" block to slash commands DSL that allows to process a parameter before it is passed to "explanation" or "command" blocks. Pass path for previewing Markdown as "data" attribute instead of setting a variable on "window".
2017-05-04Add artifact file page that uses the blob viewerDouwe Maan
2017-03-07Added Prometheus Service and Prometheus graphsKamil Trzciński
2017-02-06Fixed tests, renamed files and methodsJose Ivan Vargas
2017-02-06Changed the controller/route name to 'ci/cd' and renamed the corresponding filesJose Ivan Vargas
Added tests to verify the access policy to the new controller
2017-01-19Corrected code style and titlesJose Ivan Vargas
2017-01-19Moved the webhooks and services gear options to a single one called integrationsJose Ivan Vargas
2017-01-03Moved the members (project_members)option to a single controller called membersJose Ivan Vargas
This controller is going to contain both the project members and groups options for the settings gear. Generated the route and modified the routing to point to the new members setting path
2016-12-01API: Endpoint to expose personal snippets as /snippetsGuyzmo
Adding the necessary API for the new /snippets Restful resource added with this commit. Added a new Grape class `Snippets`, as well as a `PersonalSnippet` entity. Issue: #20042 Merge-Request: !6373 Signed-off-by: Guyzmo <guyzmo+gitlab+pub@m0g.net>
2016-11-11add link to build's pipeline within build page headerMike Greiling
2016-10-14Add back the space which Sublime can't easily tell:Lin Jen-Shin
Failed build: https://gitlab.com/gitlab-org/gitlab-ce/builds/5116496 Reason why I can't see this: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/6019#note_16958250
2016-10-14Use the same style in the same file, feedback:Lin Jen-Shin
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/6019#note_16957939
2016-10-13Introduce more GitLab routing helpers, feedback:Lin Jen-Shin
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/6019#note_16852207
2016-09-21Merge branch 'and-you-get-awards' into 'master' Rémy Coutable
And Snippets get awards ## What does this MR do? Makes snippets more awesome, by making them awardables ## Why was this MR needed? Because Snippets were left behind. ## What are the relevant issue numbers? Closes #17878 See merge request !4456
2016-09-21Scope environments to projectKamil Trzcinski
2016-09-19Fix tests for Snippets toggling awardsZ.J. van de Weg
Also incorporate feedback
2016-09-15Implement Cycle Analytics frontend.Fatih Acet
2016-08-24Path could also have slashes! Feedback:Lin Jen-Shin
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/5142#note_14347729
2016-08-18Use path rather than URL because it should work for http 302:Lin Jen-Shin
Feedback: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/5142#note_14035941
2016-08-17Use switch case in a helper, feedback:Lin Jen-Shin
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/5142#note_13988401
2016-06-15Merge branch 'environments-and-deployments' into 'master' Rémy Coutable
Add environments and deployments This MR is a continuation of https://gitlab.com/gitlab-org/gitlab-ce/issues/17009. The current implementation is as follow: 1. We have two new tables: `environments` and `deployments`. 2. We have a new tab: `Environments` under `Pipelines` where you can see all you environments and add a new one. 3. We add a new option to `.gitlab-ci.yml` to track where we should create a deployment for environment. 4. If environment in `.gitlab-ci.yml` is specified it will create a deployment. **If environment does not exist it will be created.** (this got changed) 5. The deployment is always successful and shows the time of the action, in that case a build that presumably should do deployment. In the future we could extend deployment with statuses: success, failure. We could extend deployments with information that this is partial or full deployment. 6. User have to create environments that he will track first. 7. User can remove environments. 8. User can retry/rollback past deployment (in that case we retry past build). The new build when succeeds it will create a new deployment. 9. Currently environment have only one parameter: `name`. In the future it should have: `variables`, `credentials` and possibly `runners` and maybe other resources. 10. Currently deployment have this parameters: `sha`, `ref`, `deployable (in this case a build)`, `user (who triggered a deployment)`, `created_at`. The `.gitlab-ci.yml`: ``` deploy to production: stage: deploy script: dpl travis... environment: production ``` What needs to be done: - [x] Write initial implementation - [x] Improve implementation (@ayufan) - [x] Write tests (@ayufan) - [x] Improve UX of the forms (cc @markpundsack) - reviewed by @markpundsack - [x] Improve implementation of the views (cc @jschatz1) - done by @iamphill - [x] Write .gitlab-ci.yml documentation for `environments` - done by @ayufan - [ ] Write user documentation (@ayufan and @markpundsack) See merge request !4605
2016-06-14UI and copywriting improvementsRémy Coutable
+ Move 'Edit Project/Group' out of membership-related partial + Show the access request buttons only to logged-in users + Put the request access buttons out of in a more visible button + Improve the copy in the #remove_member_message helper Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-06-10commit statusKamil Trzcinski
2016-05-12Fix CI testsKamil Trzcinski
2016-05-08WIPKamil Trzcinski
2016-05-04Added docker registry viewKamil Trzcinski
2016-04-13Cleanup changesKamil Trzcinski
2016-04-12Use Ci::Commit as PipelineKamil Trzcinski
2015-12-04Ensure "Remove Source Branch" button is not shown when branch is being ↵Rubén Dávila
deleted. #3583
2015-10-14Added builds viewKamil Trzcinski
2015-09-25Move runners page to project settingsDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-09-14Add page titles to header for group and projectDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-07-07Move project activity to separate tab. Add more features to project home pageDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-06-25Refactor issue and merge request sidebarDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-04-01Better looking milestone listsDmitriy Zaporozhets
2015-03-20Fix project issues and merge requests pagesDmitriy Zaporozhets
2015-03-09Enforce restricted visibilities for snippetsVinnie Okada
Add new service classes to create and update project and personal snippets. These classes are responsible for enforcing restricted visibility settings for non-admin users.