summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* Fix markdown parsing for doc pagedocs/fix-doc-blockSteve Azzopardi2019-06-031-3/+3
| | | | | The lack of indentatioin is causing the markdown parser to get confused and formating it wrong.
* Add Namespace and ProjectStatistics to GraphQL APIAlessio Caiazza2019-06-031-0/+1
| | | | | | We can query namespaces, and nested projects. Projects now exposes statistics
* Merge branch 'patch-48' into 'master'Ray Paik2019-06-031-2/+2
|\ | | | | | | | | Docs: Fix typos See merge request gitlab-org/gitlab-ce!29020
| * Fix typoPhilipp C. H2019-06-011-2/+2
| |
* | Merge branch 'patch-65' into 'master'Ray Paik2019-06-031-1/+1
|\ \ | | | | | | | | | | | | Fix typo in multiple_assignees_for_issues.md See merge request gitlab-org/gitlab-ce!29002
| * | Update multiple_assignees_for_issues.mdIlya Peterov2019-05-311-1/+1
| |/
* | Document the Admin Area's *Runners* pageRussell Dickenson2019-06-032-2/+53
| |
* | Merge branch '60782-docs-redis-troubleshooting-replication' into 'master'Evan Read2019-06-031-1/+1
|\ \ | |/ |/| | | | | | | | | Docs feedback: Redis Troubleshooting Replication Closes #60782 See merge request gitlab-org/gitlab-ce!28936
| * Fix troubleshooting command to include host and quote password60782-docs-redis-troubleshooting-replicationGabriel Mazetto2019-05-301-1/+1
| |
* | Update 'committer restriction' push rule nameDrew Blessing2019-05-311-1/+1
| |
* | Add optional param :start_project to allow variable commit targetsKerri Miller2019-05-311-0/+1
| | | | | | | | | | | | | | | | This extends POST#:id/repository/commits to allow the optional parameter `:start_project`, which will allow targeting other projects besides the one derived from `:id`. Resolves https://gitlab.com/gitlab-org/gitlab-ce/issues/50850
* | Merge branch 'gitaly-version-v1.43.0' into 'master'Bob Van Landuyt2019-05-311-19/+0
|\ \ | | | | | | | | | | | | Upgrade Gitaly to v1.43.0 See merge request gitlab-org/gitlab-ce!28867
| * | Remove hook directory requirement from Shellgitaly-version-v1.43.0Zeger-Jan van de Weg2019-05-301-19/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It used to be the case that GitLab created symlinks for each repository to one copy of the Git hooks, so these ran when required. This changed to set the hooks dynamically on Gitaly when invoking Git. The side effect is that we didn't need all these symlinks anymore, which Gitaly doesn't create anymore either. Now that means that the tests in GitLab-Rails should test for it either. Related: https://gitlab.com/gitlab-org/gitaly/issues/1392#note_175619926
* | | Apply reviewer suggestionsweimeng-email-routingWei-Meng Lee2019-05-311-1/+1
| | |
* | | Add group-level notification emails to docsWei-Meng Lee2019-05-312-2/+6
| | |
* | | Merge branch '59587-add-graphql-logging' into 'master'Sean McGivern2019-05-311-0/+14
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Add logging to GraphQL Closes #59587 See merge request gitlab-org/gitlab-ce!27885
| * | | Apply reviewer feedback59587-add-graphql-loggingcharlie ablett2019-05-311-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Comply doc with guidelines - Improve tests for readability and completeness - Separate out phases visually with newlines - Add `format_message` test - test readability - code and test structure/styling - static query analyzers - call `as_json` on `provided_variables` - add exception handling
| * | | Add `graphql_json` logfile documentationcharlieablett2019-05-301-0/+13
| | | |
* | | | Docs: Convert links in various docs to relativeMarcel Amirault2019-05-3116-31/+30
| | | |
* | | | Docs: Convert remaining links in /user to relativeMarcel Amirault2019-05-3112-29/+29
| | | |
* | | | Docs: Add introduced column to table in Personal Access Tokens docMarcel Amirault2019-05-311-10/+8
| | | |
* | | | Docs: Finish changing links to relative in user/project (part 2)Marcel Amirault2019-05-3112-33/+33
| | | |
* | | | Docs: Change links to relative in /user/project (Part 1)Marcel Amirault2019-05-3121-54/+46
| | | |
* | | | Docs: Clean up tables in permissions docMarcel Amirault2019-05-311-132/+129
| | | |
* | | | Merge branch 'bvl-phabricator-import-issues' into 'master'Phil Hughes2019-05-312-0/+33
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Setup Phabricator import Closes #60562 See merge request gitlab-org/gitlab-ce!27877
| * | | | Setup Phabricator importBob Van Landuyt2019-05-312-0/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This sets up all the basics for importing Phabricator tasks into GitLab issues. To import all tasks from a Phabricator instance into GitLab, we'll import all of them into a new project that will have its repository disabled. The import is hooked into a regular ProjectImport setup, but similar to the GitHub parallel importer takes care of all the imports itself. In this iteration, we're importing each page of tasks in a separate sidekiq job. The first thing we do when requesting a new page of tasks is schedule the next page to be imported. But to avoid deadlocks, we only allow a single job per worker type to run at the same time. For now we're only importing basic Issue information, this should be extended to richer information.
* | | | | Merge branch 'remove-render-if-exists-partial-caveat' into 'master'Phil Hughes2019-05-311-9/+0
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | | | | | | Remove render_if_exists partial caveat See merge request gitlab-org/gitlab-ce!28959
| * | | | Remove render_if_exists partial caveatremove-render-if-exists-partial-caveatLuke Bennett2019-05-311-9/+0
| | | | |
* | | | | Consolidate documentation written for e2e tests under dev docsddavison2019-05-309-5/+1259
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously the documentation was separated. If we want to bake quality into the product, how better than to include everything we use directly in the development documentation Signed-off-by: ddavison <ddavison@gitlab.com> Fix broken internal doc link Move documentation for page objects to the e2e section
* | | | Merge branch ↵Mike Greiling2019-05-301-8/+4
|\ \ \ \ | |_|_|/ |/| | | | | | | | | | | | | | | | | | | 'ee-7672-geo-remove-deprecated-wikis_count-and-repositories_count-fields-from-the-public-api-geo' into 'master' Backport of https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/13025 See merge request gitlab-org/gitlab-ce!28701
| * | | Backport of https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/13025ee-7672-geo-remove-deprecated-wikis_count-and-repositories_count-fields-from-the-public-api-geoValery Sizov2019-05-291-8/+4
| | | |
* | | | Update diff_limits.mdRussell Dickenson2019-05-301-11/+30
| | | |
* | | | Merge branch 'docs-omnibus-grafana' into 'master'Achilleas Pipinellis2019-05-301-3/+5
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | list omnibus grafana installation details See merge request gitlab-org/gitlab-ce!28269
| * | | | list omnibus grafana installation detailsdocs-omnibus-grafanaBen Bodenmiller2019-05-111-3/+5
| | | | |
* | | | | Add doc typeMarcia Ramos2019-05-308-6/+35
| | | | | | | | | | | | | | | | | | | | For ssot epic
* | | | | Merge branch 'docs-ssot-ci-1' into 'master'Achilleas Pipinellis2019-05-306-0/+24
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Docs: ssot ci/files See merge request gitlab-org/gitlab-ce!28801
| * | | | | Add doc typedocs-ssot-ci-1Marcia Ramos2019-05-276-0/+24
| | | | | | | | | | | | | | | | | | | | | | | | For ssot epic
* | | | | | Docs: Change links to relative in /topics docsMarcel Amirault2019-05-304-20/+20
| | | | | |
* | | | | | Add doc typeMarcia Ramos2019-05-304-4/+21
| |_|_|/ / |/| | | | | | | | | | | | | | For CI services examples
* | | | | Fix highest role docsThiago Presa2019-05-301-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | The docs for the highest_role field was incorrectly added to the /users endpoint. This commit adds it to the /users/:id
* | | | | Merge branch 'jl-update-components-k8s-apps-docs' into 'master'Achilleas Pipinellis2019-05-301-2/+2
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Rename Kubernetes Cluster Apps to GitLab Managed Apps See merge request gitlab-org/gitlab-ce!28894
| * | | | | Rename Kubernetes Cluster Apps to GitLab Managed Appsjl-update-components-k8s-apps-docsJoshua Lambert2019-05-291-2/+2
| | |_|_|/ | |/| | |
* | | | | Docs: Fix 4 docs to resolve follow-up issueMarcel Amirault2019-05-304-2/+4
| | | | |
* | | | | Port some EE API docs to CEAchilleas Pipinellis2019-05-295-3/+677
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The following EE files had small differences with their CE counterpart so they have been ported to CE: - doc/api/boards.md - doc/api/discussions.md - doc/api/notes.md - doc/api/resource_label_events.md - doc/api/services.md
* | | | | Docs: Clarify allowed characters in masked variablesKrasimir Angelov2019-05-291-3/+2
| | | | |
* | | | | Merge branch 'ee-10587-geo-development-fdw-docs' into 'master'Evan Read2019-05-291-6/+72
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added FDW development documentation Closes gitlab-ee#10587 See merge request gitlab-org/gitlab-ce!28501
| * | | | | Added FDW development documentationee-10587-geo-development-fdw-docsGabriel Mazetto2019-05-291-6/+72
| | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | Improve existing FDW documentation in `doc/development` to include additional information about the architecture and how to use FDW as a developer.
* | | | | Merge branch 'add-wiki-size-to-statistics' into 'master'Stan Hu2019-05-292-0/+6
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add wiki size to project statistics Closes #57822 See merge request gitlab-org/gitlab-ce!25321
| * | | | | Add wiki size to project statisticsPeter Marko2019-05-292-0/+6
| | | | | |
* | | | | | Document Admin Area's *Jobs* pageRussell Dickenson2019-05-291-0/+24
| |_|/ / / |/| | | |