From 6077c7c122d293dbf8b0d0a2697fd2c09ff19d0f Mon Sep 17 00:00:00 2001 From: Andreas Rammhold Date: Thu, 9 Aug 2018 23:04:05 +0000 Subject: docs: removed duplicate `git_ssh_url` field from build event example Previously the key `git_ssh_url` was listed twice in the example payload of an Build Event web hook. --- doc/user/project/integrations/webhooks.md | 1 - 1 file changed, 1 deletion(-) (limited to 'doc/user/project') diff --git a/doc/user/project/integrations/webhooks.md b/doc/user/project/integrations/webhooks.md index 8e486318980..77fa517b5b1 100644 --- a/doc/user/project/integrations/webhooks.md +++ b/doc/user/project/integrations/webhooks.md @@ -1122,7 +1122,6 @@ X-Gitlab-Event: Build Hook }, "repository": { "name": "gitlab_test", - "git_ssh_url": "git@192.168.64.1:gitlab-org/gitlab-test.git", "description": "Atque in sunt eos similique dolores voluptatem.", "homepage": "http://192.168.64.1:3005/gitlab-org/gitlab-test", "git_ssh_url": "git@192.168.64.1:gitlab-org/gitlab-test.git", -- cgit v1.2.1 From 591fc8f57f6c9242d291ffc059124d7a0f2d21b8 Mon Sep 17 00:00:00 2001 From: Peter Leitzen Date: Mon, 23 Jul 2018 20:08:54 +0200 Subject: Document `/tag` in quick actions user doc --- doc/user/project/quick_actions.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'doc/user/project') diff --git a/doc/user/project/quick_actions.md b/doc/user/project/quick_actions.md index 0ef8eddad20..8fdfd2a6f4d 100644 --- a/doc/user/project/quick_actions.md +++ b/doc/user/project/quick_actions.md @@ -1,7 +1,7 @@ # GitLab quick actions -Quick actions are textual shortcuts for common actions on issues or merge -requests that are usually done by clicking buttons or dropdowns in GitLab's UI. +Quick actions are textual shortcuts for common actions on issues, merge requests +or commits that are usually done by clicking buttons or dropdowns in GitLab's UI. You can enter these commands while creating a new issue or merge request, and in comments. Each command should be on a separate line in order to be properly detected and executed. The commands are removed from the issue, merge request or @@ -39,7 +39,8 @@ do. | `/board_move ~column` | Move issue to column on the board | | `/duplicate #issue` | Closes this issue and marks it as a duplicate of another issue | | `/move path/to/project` | Moves issue to another project | +| `/tag v1.2.3 ` | Tags a commit with a given tag name and optional message | | `/tableflip` | Append the comment with `(╯°□°)╯︵ ┻━┻` | | `/shrug` | Append the comment with `¯\_(ツ)_/¯` | | /copy_metadata #issue | !merge_request | Copy labels and milestone from other issue or merge request | -| `/confidential` | Makes the issue confidential | \ No newline at end of file +| `/confidential` | Makes the issue confidential | -- cgit v1.2.1 From 132f3545ce721ded0d971ab6de7e5e0906740b56 Mon Sep 17 00:00:00 2001 From: Phil Hughes Date: Mon, 13 Aug 2018 08:59:13 +0100 Subject: Added docs for Web IDE Client Evaluation Closes #50143 --- .../web_ide/img/admin_clientside_evaluation.png | Bin 0 -> 8312 bytes .../project/web_ide/img/clientside_evaluation.png | Bin 0 -> 84603 bytes doc/user/project/web_ide/index.md | 32 +++++++++++++++++++++ 3 files changed, 32 insertions(+) create mode 100644 doc/user/project/web_ide/img/admin_clientside_evaluation.png create mode 100644 doc/user/project/web_ide/img/clientside_evaluation.png (limited to 'doc/user/project') diff --git a/doc/user/project/web_ide/img/admin_clientside_evaluation.png b/doc/user/project/web_ide/img/admin_clientside_evaluation.png new file mode 100644 index 00000000000..1cffaf09005 Binary files /dev/null and b/doc/user/project/web_ide/img/admin_clientside_evaluation.png differ diff --git a/doc/user/project/web_ide/img/clientside_evaluation.png b/doc/user/project/web_ide/img/clientside_evaluation.png new file mode 100644 index 00000000000..56b65dde73a Binary files /dev/null and b/doc/user/project/web_ide/img/clientside_evaluation.png differ diff --git a/doc/user/project/web_ide/index.md b/doc/user/project/web_ide/index.md index 511ac2d7e79..992f97e2284 100644 --- a/doc/user/project/web_ide/index.md +++ b/doc/user/project/web_ide/index.md @@ -72,5 +72,37 @@ leaving the Web IDE. Click the dropdown in the top of the sidebar to open a list of branches. You will need to commit or discard all your changes before switching to a different branch. +## Clientside Evaluation + +> [Introduced in](https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/19764) [GitLab Core][ce] 11.2. + +The Web IDE can be used to preview JavaScript projects right in the browser. This +feature uses CodeSandbox to compile and bundle the JavaScript used to preview. +On public projects, a `Open in CodeSandbox` button visible which will take +the files and contents of the project and load it into a CodeSandbox project. +**Note** this button is not visible on private or internal projects. + +![Web IDE Clientside Evaluation](img/clientside_evaluation.png) + +### Enabling Clientside Evaluation + +The Clientside Evaluation feature needs to be enabled inside of the GitLab instances +admin settings. + +![Admin Clientside Evaluation setting](img/admin_clientside_evaluation.png) + +Once it has been enabled in application settings, projects with a `package.json` file +and a `main` entry point can be previewed inside of the Web IDE. An example `package.json` +is below. + +```json +{ + "main": "index.js", + "dependencies": { + "vue": "latest" + } +} +``` + [ce]: https://about.gitlab.com/pricing/ [ee]: https://about.gitlab.com/pricing/ -- cgit v1.2.1 From db86214e6afb3123c71b935f2e5c335114df218b Mon Sep 17 00:00:00 2001 From: James Ramsay Date: Mon, 13 Aug 2018 10:58:53 -0400 Subject: Update docs and compress images --- .../web_ide/img/admin_clientside_evaluation.png | Bin 8312 -> 9342 bytes .../project/web_ide/img/clientside_evaluation.png | Bin 84603 -> 60256 bytes doc/user/project/web_ide/index.md | 28 +++++++++++---------- 3 files changed, 15 insertions(+), 13 deletions(-) (limited to 'doc/user/project') diff --git a/doc/user/project/web_ide/img/admin_clientside_evaluation.png b/doc/user/project/web_ide/img/admin_clientside_evaluation.png index 1cffaf09005..a930490398b 100644 Binary files a/doc/user/project/web_ide/img/admin_clientside_evaluation.png and b/doc/user/project/web_ide/img/admin_clientside_evaluation.png differ diff --git a/doc/user/project/web_ide/img/clientside_evaluation.png b/doc/user/project/web_ide/img/clientside_evaluation.png index 56b65dde73a..bd04d3d644b 100644 Binary files a/doc/user/project/web_ide/img/clientside_evaluation.png and b/doc/user/project/web_ide/img/clientside_evaluation.png differ diff --git a/doc/user/project/web_ide/index.md b/doc/user/project/web_ide/index.md index 992f97e2284..16969b2c527 100644 --- a/doc/user/project/web_ide/index.md +++ b/doc/user/project/web_ide/index.md @@ -72,28 +72,30 @@ leaving the Web IDE. Click the dropdown in the top of the sidebar to open a list of branches. You will need to commit or discard all your changes before switching to a different branch. -## Clientside Evaluation +## Client Side Evaluation > [Introduced in](https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/19764) [GitLab Core][ce] 11.2. -The Web IDE can be used to preview JavaScript projects right in the browser. This -feature uses CodeSandbox to compile and bundle the JavaScript used to preview. -On public projects, a `Open in CodeSandbox` button visible which will take -the files and contents of the project and load it into a CodeSandbox project. +The Web IDE can be used to preview JavaScript projects right in the browser. +This feature uses CodeSandbox to compile and bundle the JavaScript used to +preview the web application. On public projects, an `Open in CodeSandbox` +button is visible which will transfer the contents of the project into a +CodeSandbox project to share with others. **Note** this button is not visible on private or internal projects. -![Web IDE Clientside Evaluation](img/clientside_evaluation.png) +![Web IDE Client Side Evaluation](img/clientside_evaluation.png) -### Enabling Clientside Evaluation +### Enabling Client Side Evaluation -The Clientside Evaluation feature needs to be enabled inside of the GitLab instances -admin settings. +The Client Side Evaluation feature needs to be enabled in the GitLab instances +admin settings. Client Side Evaluation is enabled for all projects on +GitLab.com -![Admin Clientside Evaluation setting](img/admin_clientside_evaluation.png) +![Admin Client Side Evaluation setting](img/admin_clientside_evaluation.png) -Once it has been enabled in application settings, projects with a `package.json` file -and a `main` entry point can be previewed inside of the Web IDE. An example `package.json` -is below. +Once it has been enabled in application settings, projects with a +`package.json` file and a `main` entry point can be previewed inside of the Web +IDE. An example `package.json` is below. ```json { -- cgit v1.2.1 From 046bc2bff1965c70093a158813126c1c28a8e525 Mon Sep 17 00:00:00 2001 From: Kushal Pandya Date: Fri, 10 Aug 2018 16:37:23 +0530 Subject: Update docs to change `Backlog` issue board list to `Open` --- doc/user/project/img/issue_board.png | Bin 100684 -> 327718 bytes doc/user/project/issue_board.md | 8 ++++---- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'doc/user/project') diff --git a/doc/user/project/img/issue_board.png b/doc/user/project/img/issue_board.png index 50e051e25a0..925b969eebe 100644 Binary files a/doc/user/project/img/issue_board.png and b/doc/user/project/img/issue_board.png differ diff --git a/doc/user/project/issue_board.md b/doc/user/project/issue_board.md index 49b49271cff..0e847be79c2 100644 --- a/doc/user/project/issue_board.md +++ b/doc/user/project/issue_board.md @@ -119,10 +119,10 @@ Issue Board, that is, create or delete lists and drag issues from one list to an ## Issue Board terminology - **Issue Board** - Each board represents a unique view for your issues. It can have multiple lists with each list consisting of issues represented by cards. -- **List** - A column on the issue board that displays issues matching certain attributes. In addition to the default lists of 'Backlog' and 'Closed' issue, each additional list will show issues matching your chosen label or assignee. On the top of that list you can see the number of issues that belong to it. +- **List** - A column on the issue board that displays issues matching certain attributes. In addition to the default lists of 'Open' and 'Closed' issue, each additional list will show issues matching your chosen label or assignee. On the top of that list you can see the number of issues that belong to it. - **Label list**: a list based on a label. It shows all opened issues with that label. - **Assignee list**: a list which includes all issues assigned to a user. - - **Backlog** (default): shows all open issues that do not belong to one of the other lists. Always appears as the leftmost list. + - **Open** (default): shows all open issues that do not belong to one of the other lists. Always appears as the leftmost list. - **Closed** (default): shows all closed issues. Always appears as the rightmost list. - **Card** - A box in the list that represents an individual issue. The information you can see on a card consists of the issue number, the issue title, the assignee, and the labels associated with the issue. You can drag cards from one list to another to change their label or assignee from that of the source list to that of the destination list. @@ -353,9 +353,9 @@ To remove an assignee list, just as with a label list, click the trash icon. When dragging issues between lists, different behavior occurs depending on the source list and the target list. -| | To Backlog | To Closed | To label `B` list | To assignee `Bob` list | +| | To Open | To Closed | To label `B` list | To assignee `Bob` list | | --- | --- | --- | --- | --- | -| From Backlog | - | Issue closed | `B` added | `Bob` assigned | +| From Open | - | Issue closed | `B` added | `Bob` assigned | | From Closed | Issue reopened | - | Issue reopened
`B` added | Issue reopened
`Bob` assigned | | From label `A` list | `A` removed | Issue closed | `A` removed
`B` added | `Bob` assigned | | From assignee `Alice` list | `Alice` unassigned | Issue closed | `B` added | `Alice` unassigned
`Bob` assigned | -- cgit v1.2.1 From 6e9e61dc325053328a2066bd008663489760412d Mon Sep 17 00:00:00 2001 From: Shinya Maeda Date: Wed, 15 Aug 2018 10:14:19 +0000 Subject: Documentation for JUnit XML Test Summary In MR widget --- doc/user/project/merge_requests/index.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'doc/user/project') diff --git a/doc/user/project/merge_requests/index.md b/doc/user/project/merge_requests/index.md index 86ecf33ed31..43ca498d006 100644 --- a/doc/user/project/merge_requests/index.md +++ b/doc/user/project/merge_requests/index.md @@ -43,8 +43,7 @@ A. Consider you are a software developer working in a team: 1. You checkout a new branch, and submit your changes through a merge request 1. You gather feedback from your team -1. You work on the implementation optimizing code with [Code Quality reports](https://docs.gitlab.com/ee/user/project/merge_requests/code_quality.html) **[STARTER]** -1. You build and test your changes with GitLab CI/CD +1. You verify your changes with [JUnit test reports](../../../ci/junit_test_reports.md) in GitLab CI/CD 1. You request the approval from your manager 1. Your manager pushes a commit with his final review, [approves the merge request](https://docs.gitlab.com/ee/user/project/merge_requests/merge_request_approvals.html), and set it to [merge when pipeline succeeds](#merge-when-pipeline-succeeds) (Merge Request Approvals are available in GitLab Starter) 1. Your changes get deployed to production with [manual actions](../../../ci/yaml/README.md#manual-actions) for GitLab CI/CD -- cgit v1.2.1