summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'simplify-create-new-list-issue-boards' into 'master' Annabel Dunstone Gray2016-11-244-1/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Simplify copy on "Create a new list" dropdown in Issue Boards ## What does this MR do? It changes the "Create new list" text to simply "Add list". It also describes the operation in a more concise way. It was suggested in #24659. ## Are there points in the code the reviewer needs to double check? Although I refactored references to the name of the button to reflect the new text, I left part of the documentation unmodified: File: `doc/user/project/issue_board.md` ``` In short, here's a list of actions you can take in an Issue Board: - [Create a new list](#creating-a-new-list). - [Delete an existing list](#deleting-a-list). ``` because I was not sure if changing those was necessary. Additionally, I replaced every occurrence of `click_button 'Create new list'` with `click_button 'Add list'`in the spec. I'm not sure if that causes any change in behavior as I am not sure if there are any hooks to the previous name, explicitly. File: `spec/features/boards/boards_spec.rb` ## Why was this MR needed? It is an improvement, as suggested in #24659 ## Screenshots (if relevant) **Before:** ![before](/uploads/cffd30b0e9a21d16bc25d046eb4ca42b/before.png) **After:** ![after2](/uploads/95b049e0c1c565c4ccd1a72a3f4be925/after2.png) ## Does this MR meet the acceptance criteria? - [X] [Changelog entry](https://docs.gitlab.com/ce/development/changelog.html) added - [X] [Documentation created/updated](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/development/doc_styleguide.md) - [ ] API support added - Tests - [ ] 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 it does - 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? #24659 See merge request !7605
| * Simplify copy on "Create a new list" dropdown in Issue Boardsvrod2016-11-234-1/+1
| |
* | Merge branch 'docs/rm-header-ids-from-university' into 'master' Achilleas Pipinellis2016-11-231-6/+6
|\ \ | |/ |/| | | | | | | | | Remove heading ids from University docs Having ids in headings was preventing the ToC to render correctly See merge request !7720
| * Remove header ids from University docsAchilleas Pipinellis2016-11-231-6/+6
| | | | | | | | [ci skip]
* | Merge branch 'api-delete-group-share' into 'master' Rémy Coutable2016-11-231-0/+19
|\ \ | | | | | | | | | | | | | | | | | | API: Add endpoint to delete a group share Closes #24771 See merge request !7662
| * | API: Add endpoint to delete a group shareapi-delete-group-shareRobert Schilling2016-11-231-0/+19
| | |
* | | Merge branch 'patch-13' into 'master' Achilleas Pipinellis2016-11-231-3/+7
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | | | | | | | add details that Git LFS must be enabled in project ## What does this MR do? Add details that Git LFS must be enabled in project before it will work See merge request !7680
| * | add details that Git LFS must be enabled in projectBen Bodenmiller2016-11-221-3/+7
| | |
* | | Merge branch 'docs/chrome-support-requirements' into 'master' Achilleas Pipinellis2016-11-231-1/+1
|\ \ \ | | | | | | | | | | | | | | | | Add support of Chrome/Chromium in requirements.md See merge request !7703
| * | | Add support of Chrome/Chromium in requirements.mdAchilleas Pipinellis2016-11-231-1/+1
| | | | | | | | | | | | | | | | [ci skip]
* | | | Add a starting date to milestonesmilestone_start_dateValery Sizov2016-11-231-0/+3
|/ / /
* | | Merge branch 'mrchrisw/mysql-install' into 'master' Achilleas Pipinellis2016-11-221-1/+8
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add omnibus rake task ## Why was this MR needed? There was no omnibus example ## Does this MR meet the acceptance criteria? - [x] [Documentation created/updated](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/development/doc_styleguide.md) See merge request !5416
| * | | Add omnibus rake task. Fix source envmrchrisw/mysql-installChris Wilson2016-08-191-1/+8
| | | |
* | | | Merge branch 'patch-1' into 'master' Achilleas Pipinellis2016-11-221-1/+16
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update github.md Hi, I ran into a few pitfalls while I enabled OmniAuth to be able to migrate repos from github to my omnibus-gitlab instance today, so here are my findings: These docs state thate the default authorization callback URL is `'${YOUR_DOMAIN}/import/github/callback'`, but the screenshot only shows `'${YOUR_DOMAIN}'`, which works, so I removed the ambiguity. When editing `gitlab_rails['omniauth_providers']` for github.com, you have to omit the `"url" => "https://github.com/",` part, otherwise it won't work (OmniAuth will stay deactivated). This is backed by the configuration details of the "from-source-installation" which also omits the url in the `yml` file. After changing the `gitlab.rb` file, `sudo gitlab-ctl reconfigure` needs to be run, which is missing in the docs. Following the updated version of this documentation I was able to enable OmniAuth. If anything I edited is wrong, please correct me, as I don't know how the "from-source-installations" would react to my changes. Best regards, Florian See merge request !4072
| * | | | Update github.mdFlorian2016-10-211-1/+16
| | | | |
* | | | | Reduce size of images from 25MB to 13MB using pngquantAchilleas Pipinellis2016-11-22384-0/+0
| |_|/ / |/| | | | | | | | | | | | | | | | | | | Took it from https://gitlab.com/gitlab-com/www-gitlab-com/merge_requests/3232 [ci skip]
* | | | Fix list in JIRA service docsAchilleas Pipinellis2016-11-221-4/+4
| | | | | | | | | | | | | | | | [ci skip]
* | | | Add changes to JIRA api docsAchilleas Pipinellis2016-11-222-11/+9
| | | | | | | | | | | | | | | | [ci skip]
* | | | Merge branch 'fix-api-iid-filter' into 'master' Rémy Coutable2016-11-222-1/+3
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix IID filter for merge requests and milestones I updated the example in the docs and added a test. The milestones API was also broken for the same reason. Related to !7358 and !7373 See merge request !7648
| * | | | Document both valid cases for API iid filterfix-api-iid-filterRobert Schilling2016-11-222-2/+4
| | | | |
| * | | | Fix IID filter for merge requests and milestonesRobert Schilling2016-11-222-3/+3
| | |_|/ | |/| |
* | | | Merge branch 'docs/cycle-analytics-new-image' into 'master' Achilleas Pipinellis2016-11-222-6/+3
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Add new image for Cycle Analytics See merge request !7666
| * | | | Add new image for Cycle AnalyticsAchilleas Pipinellis2016-11-222-6/+3
| | | | | | | | | | | | | | | | | | | | [ci skip]
* | | | | Refactor JIRA docs and bring back some old informationAchilleas Pipinellis2016-11-222-94/+101
| | | | |
* | | | | Move JIRA service doc back to its old locationAchilleas Pipinellis2016-11-2218-203/+202
| | | | |
* | | | | Add remove links to JIRA documentationFelipe Artur2016-11-224-2/+5
| | | | |
* | | | | Revert "Merge branch 'docs/jira-old' into 'master'"Achilleas Pipinellis2016-11-2223-249/+198
|/ / / / | | | | | | | | This reverts merge request !7365
* | | | Merge branch 'ux-guide-update-mr-copy' into 'master' Achilleas Pipinellis2016-11-221-1/+3
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add Approve and Remove approval to UX Guide terminology table Updating UX Guide page on terminology to include guidance on 'Approve' and 'Remove approval'. See merge request !7632
| * | | | [ci skip] Add Approve and Remove Approval to UX Guide terminology tableux-guide-update-mr-copyawhildy2016-11-211-1/+3
| |/ / /
* | | | Merge branch 'patch-1' into 'master' Achilleas Pipinellis2016-11-221-1/+1
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | fixed manage_large_binaries_with_git_lfs.md typo See merge request !7612
| * | | | fixed manage_large_binaries_with_git_lfs.md typoJán Dzurek2016-11-211-1/+1
| | | | |
* | | | | Merge branch 'patch-10' into 'master' Achilleas Pipinellis2016-11-221-1/+1
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | add missing sudo skip-auto-migration ## What does this MR do? Fixes minor documentation issue where adding `skip-auto-migration` file does not work because `sudo` is not used. See merge request !7435
| * | | | | add missing sudo skip-auto-migrationBen Bodenmiller2016-11-121-1/+1
| | | | | |
* | | | | | Merge branch 'patch-9' into 'master' Achilleas Pipinellis2016-11-221-1/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change docker backup command in readme See the general Documentation guidelines http://docs.gitlab.com/ce/development/doc_styleguide.html ## What does this MR do? MR fixes wrong order of parameters in the command given for backing up gitlab in a docker container ## Moving docs to a new location? No See merge request !7468
| * | | | | | Change docker backup command in readmeBenjamin Weber2016-11-141-1/+1
| | | | | | |
* | | | | | | Merge branch 'docs/pipelines-add-img' into 'master' Achilleas Pipinellis2016-11-222-0/+2
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add example image to pipelines docs See merge request !7652
| * | | | | | | Add example image to pipelines docsAchilleas Pipinellis2016-11-222-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/24767 [ci skip]
* | | | | | | | Merge branch 'object-state-models-docs' into 'master' Achilleas Pipinellis2016-11-225-0/+26
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Object state models docs Object state models docs for issues and merge requests. This is to start documenting object models, focused more on users and how they experience the product. See merge request !7544
| * | | | | | | Remove contents section since it's not necessary [ci skip]object-state-models-docsVictor Wu2016-11-201-7/+0
| | | | | | | |
| * | | | | | | Remove hyphen [ci skip]Victor Wu2016-11-181-0/+0
| | | | | | | |
| * | | | | | | Remove hyphen [ci skip]Victor Wu2016-11-181-0/+0
| | | | | | | |
| * | | | | | | Add spaces to conform to style guide [ci skip]Victor Wu2016-11-181-0/+5
| | | | | | | |
| * | | | | | | Update object_state_models.md [ci skip]Victor Wu2016-11-171-0/+27
| | | | | | | |
| * | | | | | | Delete .gitkeep [ci skip]Victor Wu2016-11-171-0/+0
| | | | | | | |
| * | | | | | | Upload new file [ci skip]Victor Wu2016-11-171-0/+0
| | | | | | | |
| * | | | | | | Upload new file [ci skip]Victor Wu2016-11-171-0/+0
| | | | | | | |
| * | | | | | | Upload new file [ci skip]Victor Wu2016-11-171-0/+0
| | | | | | | |
| * | | | | | | Add new directory [ci skip]Victor Wu2016-11-171-0/+0
| | | | | | | |
| * | | | | | | Add file [ci skip]Victor Wu2016-11-171-0/+0
| | | | | | | |
| * | | | | | | Link to object state models [ci skip]Victor Wu2016-11-171-0/+1
| | | | | | | |