Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-01-12Add support for PlantUML diagrams in Asciidoc.Horacio Sanson
This MR enables rendering of PlantUML diagrams in Asciidoc documents. To add a PlantUML diagram all we need is to include a plantuml block like: ``` [plantuml, id="myDiagram", width="100px", height="100px"] -- bob -> alice : ping alice -> bob : pong -- ``` The plantuml block is substituted by an HTML img element with *src* pointing to an external PlantUML server. This MR also add a PlantUML integration section to the Administrator -> Settings page to configure the PlantUML rendering service and to enable/disable it. Closes: #17603
2017-01-09Merge branch 'feature/log-ldap-to-application-log' into 'master' Rémy Coutable
Log LDAP blocking/unblocking events to application log See merge request !8042
2017-01-07Merge branch 'fix-link-reply-by-email' into 'master' Achilleas Pipinellis
Fix dead link in Reply by email documentation Closes #26247 See merge request !8474
2017-01-06Fix dead link in Reply by email documentationAchilleas Pipinellis
2017-01-04Merge branch 'mrchrisw-repack-not-gc' into 'master' Jacob Vosmaer (GitLab)
Clarify git housekeeping See merge request !8373
2016-12-30Clarify git housekeepingChris Wilson
This changed in https://gitlab.com/gitlab-org/gitlab-ce/commit/6bcc52a53678ca68001189c801497862d3f6e758 The current docs are not clear in stating that we also run a `git repack` and that we respect the admin application setting values.
2016-12-21Add more storage statisticsMarkus Koller
This adds counters for build artifacts and LFS objects, and moves the preexisting repository_size and commit_count from the projects table into a new project_statistics table. The counters are displayed in the administration area for projects and groups, and also available through the API for admins (on */all) and normal users (on */owned) The statistics are updated through ProjectCacheWorker, which can now do more granular updates with the new :statistics argument.
2016-12-21Merge branch 'authentiq-id-oauth-support' into 'master' Rémy Coutable
Added support for Authentiq OAuth provider See merge request !8038
2016-12-21Added support for Authentiq oauth providerAlex
2016-12-20fixup! Log messages when blocking/unblocking LDAP accountsMarkus Koller
2016-12-20Log messages when blocking/unblocking LDAP accountsMarkus Koller
2016-12-20Rename "Online terminal" to "Web terminal" in the docsNick Thomas
2016-12-20Merge branch '22864-kubernetes-deploy-with-terminal' into 'master' Kamil Trzciński
Add online terminal support for Kubernetes ## What does this MR do? Gives terminal access to kubernetes-deployed environments via the deployment service ## Are there points in the code the reviewer needs to double check? ## Why was this MR needed? Part of idea to production ## Screenshots (if relevant) ### `/root/reviewing/environments` ![Screen_Shot_2016-12-15_at_19.10.40](/uploads/bd2c54c07b6c85dec3328a20cd185b64/Screen_Shot_2016-12-15_at_19.10.40.png) ### `/root/reviewing/environments/10013` ![Screen_Shot_2016-12-19_at_12.52.39](/uploads/db4e4e06cda88437e8727433d65898b9/Screen_Shot_2016-12-19_at_12.52.39.png) ### `/root/reviewing/enviroments/10013/terminal` ![Screen_Shot_2016-12-15_at_02.35.52](/uploads/1bb77b7e2de2c657ae3bda62dc4f0970/Screen_Shot_2016-12-15_at_02.35.52.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) - 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 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? * Closes #22864 #22958 * Alternative to, and somewhat based on, !6770 * Depends on https://gitlab.com/gitlab-org/gitlab-workhorse/merge_requests/83 See merge request !7690
2016-12-20Add online terminal documentationNick Thomas
2016-12-16Add LDAP task to rename a providerDrew Blessing
Sometimes admins will change the LDAP configuration, not realizing that problems will occur if the user's LDAP identities are not also updated to use the new provider name. This task will give admins a single command to run to update identities and will prevent having to run multiple Rails console queries.
2016-12-16Merge branch 'update-custom-hooks-docs' into 'master' Sean McGivern
Update custom hooks docs and set 4.1.0 See merge request !8040
2016-12-16Merge branch 'docs/add-okta-auth' into 'master' Achilleas Pipinellis
Add Okta authentication documentation Related to https://gitlab.com/gitlab-org/gitlab-ce/issues/14122 See merge request !8104
2016-12-15Add `gitlab_rails['auto_migrate'] = false` to HA docs for Redis/PG [ci skip]Drew Blessing
In a high availability configuration, the Redis and PostgreSQL nodes should not attempt to run database migrations. In fact, trying will result in errors about not providing a database password. To prevent errors and confusion, add this configurtion to these nodes' `gitlab.rb` file.
2016-12-15Fix headings in administration/logs.mdAchilleas Pipinellis
[ci skip]
2016-12-15Document `repocheck.log` in logs docsAchilleas Pipinellis
[ci skip]
2016-12-15Add Okta authentication documentationAchilleas Pipinellis
2016-12-15Merge branch 'seed-runner-token' into 'master' Kamil Trzciński
Allow users to seed the initial runner registration token using an environment variable ## What does this MR do? Allow users to seed the initial runner registration token using an environment variable ## Are there points in the code the reviewer needs to double check? - Naming, do we want to make sure we are clear it's the 'registration' token. Like GITLAB_RUNNER_REGISTRATION_TOKEN vs what I have now, GITLAB_RUNNER_TOKEN - Not sure we've tested a seed fixture before, I just made up a directory structure for the test ## Why was this MR needed? At the moment I want to use this in our idea to production demo: https://gitlab.com/gitlab-org/gitlab-ce/issues/22190 This is useful for when runner is bundled with gitlab, like in a kubernetes stack, and we want the runner to be able to register with gitlab as soon as they both come up. ## 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) - [ ] API support added - Tests - [x] Added for this feature/bug - [x] All builds are passing - [ ] Conform by the [merge request performance guides](http://docs.gitlab.com/ce/development/merge_request_performance_guidelines.html) - [ ] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides) - [ ] Branch has no merge conflicts with `master` (if you do - rebase it please) - [ ] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits) See merge request !6642
2016-12-12Update custom hooks docs and set 4.1.0Sean McGivern
2016-12-08Updating reference to database passwordIan Baum
postgresql['sql_password'] is not used, should be gitlab_rails['db_password']
2016-12-06Update custom_hooks.md for global custom hooks and chained hook infoElan Ruusamäe
https://gitlab.com/gitlab-org/gitlab-shell/merge_requests/93
2016-12-02Allow users to seed the initial runner registration token using an ↵DJ Mountney
environment variable This is useful for when runner is bundled with gitlab, like in a kubernetes stack, and we want the runner to be able to register with gitlab as soon as they both come up.
2016-12-01Fix wrong link in builds artifacts admin docsAchilleas Pipinellis
[ci skip]
2016-11-29Remove `memberOf` OID in LDAP `user_filter` docs Drew Blessing
While not technically invalid, it is not necessary to have the `memberOf` OID in the `user_filter`. It clutters things up and causes confusion for users so it's better if we remove it from the docs.
2016-11-22Reduce size of images from 25MB to 13MB using pngquantAchilleas Pipinellis
Took it from https://gitlab.com/gitlab-com/www-gitlab-com/merge_requests/3232 [ci skip]
2016-11-22Merge branch 'patch-10' into 'master' Achilleas Pipinellis
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
2016-11-17Merge branch 'mailroom_idle_timeout' into 'master' Rémy Coutable
Allows configuration of idle_timeout for incoming email. https://gitlab.com/gitlab-org/omnibus-gitlab/merge_requests/1087 See merge request !7423
2016-11-17Remove ToC since it's now supported in the docs portal itselfAchilleas Pipinellis
[ci skip]
2016-11-16Correct the idle_timeout in the docs for installation from source.Marin Jankovski
2016-11-16Remove login as root step from Redis HA docsAchilleas Pipinellis
[ci skip]
2016-11-16Minor edits in Redis HA source installAchilleas Pipinellis
[ci skip]
2016-11-16Remove experimental heading and move note at the topAchilleas Pipinellis
[ci skip]
2016-11-16Merge branch 'doc/sentinel' of gitlab.com:gitlab-org/gitlab-ce into doc/sentinelAchilleas Pipinellis
2016-11-16Improved documentation on HA sentinel part and Redis replication ↵Gabriel Mazetto
troubleshooting.
2016-11-16Updated password examples and improved omnibus troubleshootingGabriel Mazetto
2016-11-16Small fixes on Sentinel documentation for CEGabriel Mazetto
2016-11-16Improved redis sentinel documentation for CEGabriel Mazetto
2016-11-16Add idle_timeout to reply by email doc.Marin Jankovski
2016-11-16Merge examples of Redis master/slave + Sentinels for source docsAchilleas Pipinellis
[ci skip]
2016-11-16Add steps to Redis HA source installationAchilleas Pipinellis
2016-11-16Merge examples of Redis master/slave + SentinelsAchilleas Pipinellis
2016-11-16Rearrange Redis HA source installations sectionsAchilleas Pipinellis
2016-11-16Add clear instructions for the different Redis HA setupsAchilleas Pipinellis
2016-11-16Refactor Redis HA docsAchilleas Pipinellis
[ci skip]
2016-11-16Clarify LDAP troubleshooting ldap_search example [ci skip]Drew Blessing
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.
2016-11-15Swap HA setupsAchilleas Pipinellis