summaryrefslogtreecommitdiff
path: root/doc/development
Commit message (Collapse)AuthorAgeFilesLines
* Document how GitLab keeps its tests pristineNick Thomas2018-10-191-0/+124
|
* Merge branch 'docs/troubleshooting-docs-ra' into 'master'Marcia Ramos2018-10-181-10/+12
|\ | | | | | | | | Split troubleshooting docs review apps in own section See merge request gitlab-org/gitlab-ce!22462
| * Split troubleshooting docs review apps in own sectionAchilleas Pipinellis2018-10-181-10/+12
| |
* | Documents help and feedback section and DisqusMarcia Ramos2018-10-181-3/+43
| | | | | | | | | | | | - Links to MRs that introduced them - Explains how to omit them - Follows https://gitlab.com/gitlab-com/gitlab-docs/merge_requests/341
* | Merge branch 'docs-tech-debt-followup-issues' into 'master'Filipa Lacerda2018-10-181-0/+39
|\ \ | | | | | | | | | | | | When to create follow-up technical debt issues See merge request gitlab-org/gitlab-ce!22384
| * | Maintainers should be involved in follow-up issuesNick Thomas2018-10-171-1/+2
| | |
| * | Amend the tech debt in follow-ups policyNick Thomas2018-10-171-17/+33
| | |
| * | When to create follow-up technical debt issuesNick Thomas2018-10-161-0/+22
| | |
* | | Merge branch 'dm-document-role-maintainer' into 'master'Grzegorz Bizon2018-10-181-40/+88
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Document the role of the maintainer Closes #52114 See merge request gitlab-org/gitlab-ce!22232
| * | | Strongly recommend involving a domain expert, especially when in doubt.Douwe Maan2018-10-171-4/+8
| | | |
| * | | Merge branch 'master' into 'dm-document-role-maintainer'Douwe Maan2018-10-1614-207/+359
| |\ \ \ | | | |/ | | |/| | | | | # Conflicts: # doc/development/code_review.md
| * | | Clarify responsibilities of MR author and maintainer based on feedback.Douwe Maan2018-10-161-40/+51
| | | |
| * | | Rewrite guidance on getting your merge request reviewed, approved, and mergedDouwe Maan2018-10-101-36/+32
| | | |
| * | | Document the role of the maintainerDouwe Maan2018-10-091-16/+53
| | | |
* | | | Round P/S labels up, not downNick Thomas2018-10-171-0/+7
| |/ / |/| |
* | | Fix "ready for review" linkJan Provaznik2018-10-161-1/+1
| | | | | | | | | | | | | | | | | | Remove assignee_id=0 condition from search filters, we agreed that just presence of "ready of review" label is sufficient for filtering MRs, no need to unassign yourself.
* | | Define Stage labels in issue workflowFabio Busatto2018-10-151-0/+34
| |/ |/|
* | Merge branch 'ready-for-review-doc' into 'master'Douwe Maan2018-10-151-1/+15
|\ \ | | | | | | | | | | | | Add documentation how to assign a merge request for review See merge request gitlab-org/gitlab-ce!21327
| * | Add documentation how to assign a merge request for reviewJarka Kadlecová2018-10-151-1/+15
| | |
* | | Prioritize group settings, improve panel titles, disable submit without changesLuke Bennett2018-10-153-0/+32
| | |
* | | Adjust link to docs development guideWinnie Hellmann2018-10-151-1/+1
| | |
* | | Merge branch 'docs-improve-contributing-guide' into 'master'Achilleas Pipinellis2018-10-157-146/+181
|\ \ \ | | | | | | | | | | | | | | | | Improve the contributing documentation See merge request gitlab-org/gitlab-ce!22291
| * | | Improve the contributing documentationRémy Coutable2018-10-117-146/+181
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This removes duplicated content from CONTRIBUTING.md and consolidate everything under doc/development/contributing/. This also fixes missing links. Lastly, this moves the style guides from the "Implement design & UI elements" page to a new "Style guides" page. Signed-off-by: Rémy Coutable <remy@rymai.me>
* | | | Link to DeclarativePolicy page from /developmentThong Kuah2018-10-151-0/+1
| | | |
* | | | Docs: Fixing some bad linksMarcel Amirault2018-10-141-1/+1
| | | |
* | | | Merge branch 'frontend-feature-flags' into 'master'Rémy Coutable2018-10-111-0/+31
|\ \ \ \ | |/ / / |/| | | | | | | | | | | | | | | | | | | Support pushing of feature flags to the frontend Closes gitlab-org/release/framework#17 See merge request gitlab-org/gitlab-ce!22197
| * | | Support pushing of feature flags to the frontendYorick Peterse2018-10-111-0/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds a method to Gitlab::GonHelper called `push_frontend_feature_flag`. This method can be used to easily expose the state of a feature flag to Javascript code. For example, using this method we may write the following controller code: before_action do push_frontend_feature_flag(:vim_bindings) end def index # ... end def edit # ... end In Javascript we can then check the state of the flag as follows: if ( gon.features.vimBindings ) { // ... } Fixes https://gitlab.com/gitlab-org/release/framework/issues/17
* | | | Merge branch 'docs/fix-link-to-eslint-config' into 'master'Achilleas Pipinellis2018-10-101-52/+57
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Fix broken link and file improvements See merge request gitlab-org/gitlab-ce!22244
| * | | | Fix broken linkEvan Read2018-10-101-52/+57
| | |_|/ | |/| | | | | | | | | | | | | | Also includes some basic fixes to Markdown to make it adhere to styleguide.
* | | | Merge branch 'dimitrieh-master-patch-11276' into 'master'Rémy Coutable2018-10-101-1/+1
|\ \ \ \ | |_|_|/ |/| | | | | | | | | | | Add in review specifics See merge request gitlab-org/gitlab-ce!22242
| * | | Add in review specificsDimitrie Hoekstra2018-10-091-1/+1
| |/ /
* | | Clarify SLA for defectsMek Stittri2018-10-091-6/+6
|/ /
* | Merge branch 'docs/rs-feature-flag-check-by-default' into 'master'Yorick Peterse2018-10-091-0/+24
|\ \ | | | | | | | | | | | | | | | | | | Documentation for feature flags defaulting to on Closes gitlab-ee#7883 See merge request gitlab-org/gitlab-ce!22157
| * | Documentation for feature flags defaulting to onRobert Speicher2018-10-051-0/+24
| | | | | | | | | | | | Closes https://gitlab.com/gitlab-org/gitlab-ee/issues/7883
* | | Fix links that 404 and style changesEvan Read2018-10-091-21/+22
| |/ |/| | | | | | | | | | | - Some links internal links were incorrect. - Removed some #overview anchor links, because they don't jump much content. - Made text confirm to suggested proselint and mardownlint rules.
* | Fix link to MR-template and other improvementsEvan Read2018-10-081-5/+5
|/
* Use proper Configure label instead of Configuration in issue_workflow.mdZsolt Kovari2018-10-041-1/+1
|
* Merge branch 'remove-rugged' into 'master'Douwe Maan2018-10-032-58/+3
|\ | | | | | | | | Remove Gitlab::Git::Repository#rugged See merge request gitlab-org/gitlab-ce!22039
| * Remove Gitlab::Git::Repository#rugged and Gollum codeAlejandro Rodríguez2018-10-023-61/+3
| | | | | | | | | | | | | | | | Cleanup code, and refactor tests that still use Rugged. After this, there should be no Rugged code that access the instance's repositories on non-test environments. There is still some rugged code for other tasks like the repository import task, but since it doesn't access any repository storage path it can stay.
* | Merge branch 'osw-configurable-single-diff-file-limit' into 'master'Douwe Maan2018-10-021-16/+11
|\ \ | | | | | | | | | | | | | | | | | | Make single diff patch limit configurable Closes #48027 See merge request gitlab-org/gitlab-ce!21886
| * | Make single diff patch limit configurableosw-configurable-single-diff-file-limitOswaldo Ferreira2018-10-011-16/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Creates a new column to hold the single patch limit value on application_settings - Allows updating this value through the application_settings API - Calculates single diff patch collapsing limit based on diff_max_patch_bytes column - Updates diff limit documentation - Adds documentation (with warning) as of how one can update this limit
* | | Add missing changelog type [ci skip]George Tsiolis2018-10-011-1/+2
| |/ |/|
* | Update docs regarding frozen stringgfyoung2018-09-291-2/+4
| | | | | | | | xref #47424.
* | Merge branch 'bvl-merge-translations-docs' into 'master'Achilleas Pipinellis2018-09-282-0/+62
|\ \ | | | | | | | | | | | | [Docs] Document how to merge translations from Crowdin See merge request gitlab-org/gitlab-ce!21924
| * | Document how to merge translations from Crowdinbvl-merge-translations-docsBob Van Landuyt2018-09-282-0/+62
| |/
* | Merge branch 'patch-28' into 'master'Achilleas Pipinellis2018-09-281-2/+2
|\ \ | | | | | | | | | | | | Documentation: Fix broken link of feature proposal template in issue_workflow.md See merge request gitlab-org/gitlab-ce!21894
| * | Fix broken link of feature proposal template in issue_workflow.mdZsolt Kovari2018-09-241-2/+2
| | |
* | | Merge branch 'docs-fix-gitlab-capitalization-ce' into 'master'Marcia Ramos2018-09-272-3/+3
|\ \ \ | | | | | | | | | | | | | | | | Correcting Gitlab to GitLab in docs See merge request gitlab-org/gitlab-ce!21827
| * | | Correct Gitlab to GitLab in docsMarcel Amirault2018-09-252-3/+3
| | | |
* | | | Document community rolesRay Paik2018-09-271-0/+12
| | | |