summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* Finish dynamic environments and URLs sectionsdocs/refactor-environmentsAchilleas Pipinellis2016-11-175-4/+156
| | | | [ci skip]
* Move name rules under environment:name in yaml readmeAchilleas Pipinellis2016-11-171-16/+17
|
* Finish most of environmentsAchilleas Pipinellis2016-11-176-52/+132
| | | | [ci skip]
* Change deployments view imageAchilleas Pipinellis2016-11-161-0/+0
| | | | [ci skip]
* Add section on defining environmentsAchilleas Pipinellis2016-11-162-52/+114
| | | | [ci skip]
* Move paragraph to overviewAchilleas Pipinellis2016-11-161-6/+7
|
* Begin writing Overview sectionAchilleas Pipinellis2016-11-162-89/+30
|
* WIP refactor environmentsAchilleas Pipinellis2016-11-165-35/+190
|
* Minor edits in Redis HA source installAchilleas Pipinellis2016-11-161-4/+4
| | | | [ci skip]
* Remove experimental heading and move note at the topAchilleas Pipinellis2016-11-161-9/+6
| | | | [ci skip]
* Merge branch 'doc/sentinel' of gitlab.com:gitlab-org/gitlab-ce into doc/sentinelAchilleas Pipinellis2016-11-163-330/+1107
|\
| * Merge examples of Redis master/slave + Sentinels for source docsAchilleas Pipinellis2016-11-161-67/+106
| | | | | | | | [ci skip]
| * Add steps to Redis HA source installationAchilleas Pipinellis2016-11-161-73/+123
| |
| * Merge examples of Redis master/slave + SentinelsAchilleas Pipinellis2016-11-161-107/+37
| |
| * Rearrange Redis HA source installations sectionsAchilleas Pipinellis2016-11-161-24/+33
| |
| * Add clear instructions for the different Redis HA setupsAchilleas Pipinellis2016-11-161-35/+40
| |
| * Refactor Redis HA docsAchilleas Pipinellis2016-11-151-233/+314
| | | | | | | | [ci skip]
| * Swap HA setupsAchilleas Pipinellis2016-11-152-42/+45
| |
| * Add missing link to GH issueAchilleas Pipinellis2016-11-111-6/+9
| |
| * Rearrange sections in Sentinel docsAchilleas Pipinellis2016-11-101-162/+181
| | | | | | | | [ci skip]
| * Move some things overAchilleas Pipinellis2016-11-101-83/+112
| |
| * Move experimental heading at the bottom under changelogAchilleas Pipinellis2016-11-101-26/+33
| |
| * Fix typos of Redis sentinel docsAchilleas Pipinellis2016-11-101-22/+22
| |
| * Remade documentation for Redis HA with OmnibusGabriel Mazetto2016-11-102-182/+480
| |
| * Fixed some documentation and moved Source install specific to other file.Gabriel Mazetto2016-11-082-121/+300
| |
| * Fixed documentation and added redis/sentinel roles instructionGabriel Mazetto2016-11-081-14/+54
| |
| * Few more fixes to Sentinel documentation to address MR feedbackGabriel Mazetto2016-11-081-7/+4
| |
| * Reduce the ammount of lines to disable services and update TOCGabriel Mazetto2016-11-081-9/+3
| |
| * Improved Redis HA and Sentinel documentation.Gabriel Mazetto2016-11-081-117/+210
| |
| * Improved documentation on HA sentinel part and Redis replication ↵Gabriel Mazetto2016-11-081-60/+256
| | | | | | | | troubleshooting.
| * Updated password examples and improved omnibus troubleshootingGabriel Mazetto2016-11-081-4/+19
| |
| * Small fixes on Sentinel documentation for CEGabriel Mazetto2016-11-081-2/+0
| |
| * Improved redis sentinel documentation for CEGabriel Mazetto2016-11-081-36/+26
| |
* | Improved documentation on HA sentinel part and Redis replication ↵Gabriel Mazetto2016-11-161-60/+256
| | | | | | | | troubleshooting.
* | Updated password examples and improved omnibus troubleshootingGabriel Mazetto2016-11-161-4/+19
| |
* | Small fixes on Sentinel documentation for CEGabriel Mazetto2016-11-161-2/+0
| |
* | Improved redis sentinel documentation for CEGabriel Mazetto2016-11-161-36/+26
| |
* | [ci skip] Link to the copy (messaging) page.Victor Wu2016-11-156-0/+83
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add new file for copy (messaging) guidelines Update copy guidelines Fix typo Add forms to guidelines Simplify Copy heading Refine copy page. Add images and table Fix toc link on Copy page
* | Clarify LDAP troubleshooting ldap_search example [ci skip]Drew Blessing2016-11-151-0/+18
| | | | | | | | | | | | | | | | | | A customer noted an error/lack of clarity in the LDAP documentation with the `ldap_search` example. Previously, if taken literally, the customer may have expected the `$` variables to be automatically replaced or if they paste the exact `user_filter` contents the parentheses would have been incorrect. Let's just simply the filter and use exactly what's in the configuration.
* | Merge branch 'patch-9' into 'master' Sean McGivern2016-11-151-5/+5
|\ \ | | | | | | | | | | | | Fix invalid JSON in Builds API doc See merge request !7475
| * | Fix invalid JSON in Builds API doc Bernhard Häussner2016-11-151-5/+5
| | | | | | | | | | | | | | | | | | The JSON of the example responses were missing a few `,` and therefor invalid. This adds them to make those JSONs valid.
* | | Merge branch '23584-triggering-builds-from-webhooks' into 'master' Rémy Coutable2016-11-151-0/+24
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add ref parameter for triggering builds with gitlab webhook from other project. Currently GitLab can trigger builds from external tools like curl. But there is no way to trigger builds with webhook from another GitLab project. Executing webhook like `/projects/:id/trigger/builds?token=TOKEN&ref=master` results in such message from server: ``` 400 No builds created ``` Problem is the ref from request body takes precedence of the ref from query string. System tries to trigger build for nonexistent branch instead of `master`. This is the feature of the Grape framework used to build GitLab api. This MR adds optional `ref` parameter into the api url: ``` /projects/:id/ref/:ref/trigger/builds?token=TOKEN ``` This will lead that the ref in the url will have precedence of the ref inside request body. This solution provides compatibility with current API urls. Closes #23584 See merge request !7022
| * | | Add ref parameter for triggerring builds with gitlab webhook from other project.Dmitry Poray2016-11-151-0/+24
| | | |
* | | | Merge branch 'master-recursiveTree' into 'master' Douwe Maan2016-11-151-20/+34
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Issue #4270: Recursive option for files through API ## What does this MR do? - Adds recursive param to tree API request. With this param we can get all repository paths in a single request. - Related [old github pull request](https://github.com/gitlabhq/gitlabhq/pull/9311) ## Are there points in the code the reviewer needs to double check? ## Why was this MR needed? Requested in #4270 ## Screenshots (if relevant) ## Does this MR meet the acceptance criteria? - [X] [CHANGELOG](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CHANGELOG) entry added - [X] [Documentation created/updated](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/development/doc_styleguide.md) - [X] API support added - Tests - [X] Added for this feature/bug - [x] All builds are passing - [x] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides) - [x] Branch has no merge conflicts with `master` (if you do - rebase it please) - [x] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits) ## What are the relevant issue numbers? Requested in #4270 See merge request !6088
| * | | | Issue #4270: Recursive option for files through APIRebeca Méndez2016-11-121-20/+34
| | | | |
* | | | | Merge branch '21076-deleted-merged-branches' into 'master' Douwe Maan2016-11-151-0/+18
|\ \ \ \ \ | |_|_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add button to delete all merged branches ## What does this MR do? It adds a button to the branches page that the user can use to delete all the branches that are already merged. This can be used to clean up all the branches that were forgotten to delete while merging MRs. **Note** ~~This MR is WIP until MR !6408 is merged.~~ ## Are there points in the code the reviewer needs to double check? The UX of the actual "Delete merged branches" button. ## Why was this MR needed? Fixes #21076 ## Screenshots ![Branches page without "Delete all merged" button](/uploads/3a2936a83c3547a0fce92a74af880a2d/Screen_Shot_2016-10-17_at_20.06.30.png) Before: ![Screen_Shot_2016-10-17_at_20.07.11](/uploads/55efcebf4e0a45dbfc70ba4a11ca152c/Screen_Shot_2016-10-17_at_20.07.11.png) After: ## Does this MR meet the acceptance criteria? - [x] [CHANGELOG](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CHANGELOG) entry added - [x] [Documentation created/updated](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/development/doc_styleguide.md) - [x] API support added - Tests - [x] Added for this feature/bug - [x] 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] Branch has no merge conflicts with `master` (if you do - rebase it please) - [x] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits) ## What are the relevant issue numbers? Closes #21076 See merge request !6449
| * | | | Add button to delete all merged branchesToon Claes2016-11-091-0/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It adds a button to the branches page that the user can use to delete all the branches that are already merged. This can be used to clean up all the branches that were forgotten to delete while merging MRs. Fixes #21076.
* | | | | Merge branch 'patch-9' into 'master' Sean McGivern2016-11-151-1/+5
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | clarify best way to install custom CA See merge request !7434
| * | | | | clarify best way to install custom CABen Bodenmiller2016-11-141-1/+5
| | |/ / / | |/| | |
* | | | | Link to correct version of SanitizationFilter API docs for whitelistRobert Speicher2016-11-141-1/+1
| | | | | | | | | | | | | | | | | | | | [ci skip]