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
path: root/doc
AgeCommit message (Collapse)Author
2016-05-21Merge branch 'adambutler/gitlab-ce-feature/support-diff-of-issue-title-rename'Douwe Maan
# Conflicts: # app/services/system_note_service.rb
2016-05-21Merge branch 'eReGeBe/gitlab-ce-feature/milestone-md' into 'master' Douwe Maan
Implement special GitLab markdown reference for milestones https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/3453 by @eReGeBe, with two additions: - Move changelog item to 8.8 - Fix cross-project milestone ref with invalid project, like https://gitlab.com/gitlab-org/gitlab-ce/commit/f7348cd348ad8f4a18d74dd668283a4e236f5790 did for labels Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/13829 See merge request !3897
2016-05-21Merge branch 'issue_9013' into 'master' Douwe Maan
Let users set notification levels in projects which they are not members Fixes #9013 See merge request !3986
2016-05-20Merge branch 'feature/runner-config-untagged-jobs' into 'master' Robert Speicher
Add config for CI Runner that prevents it from picking untagged jobs Closes #3456 See merge request !4039
2016-05-20Merge branch 'fix/after-script-documentation-update' into 'master' Jeroen van Baarsen
Update 'after_script' introduction note Related to gitlab-org/gitlab-ci-multi-runner#1321 See merge request !4205
2016-05-19Add minor corrections related to config of runnerGrzegorz Bizon
2016-05-19Add docs for a new configuration setting for runnerGrzegorz Bizon
2016-05-19Merge branch 'doc-broken-links' into 'master' Jeroen van Baarsen
Fix broken documentation links Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/15249 - [x] `/help/ui`- This is working for me - [x] `/help/ci/examples/deployment/README.md` - Fixed - [x] `/help/ci/api/projects.md` - Fixed - [x] `/help/markdown/LICENSE` - Cannot do much to fix it, added a note. - [x] `/help/ci/ssh/README.md` - Cannot find this link referenced anywhere. See merge request !3903
2016-05-19Merge branch 'migration-helpers' into 'master' Robert Speicher
Added helper methods for database migrations These helpers can ultimately be used to write migrations that don't require downtime. See #15464 for more information. See merge request !3860
2016-05-19Merge remote-tracking branch 'origin/master' into ↵Rémy Coutable
eReGeBe/gitlab-ce-feature/milestone-md Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-05-19Update 'after_script' introduction noteTomasz Maczukin
2016-05-19Merge branch 'master' into 'master' Hannes Rosenögger
fix example urls for (dis)associating runners to projects See merge request !2993
2016-05-18Merge branch 'patch-1' into 'master' Hannes Rosenögger
doc: fix git lfs workaround for using http instead of https the url should only point to `info/lfs` instead of `info/lfs/batch/objects` See merge request !2713
2016-05-18Merge branch 'docker-registry-view' into 'master' Kamil Trzciński
Add container registry support Tasks: - [x] Merge docker/distribution authentication service: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/3787 - [x] Implement Docker Registry API - [x] Show a list of docker images in GitLab - [x] Remove registry repository on project deletion - [x] Support project rename, move and namespace rename - [x] Use token when connecting the registry - [x] Allow to delete images from GitLab - [x] Support pushing from GitLab CI (gitlab-ci-token / $CI_BUILD_TOKEN) - [x] Support GitLab Runner pulling for public repositories - [ ] Support GitLab Runner pulling for private repositories - [x] Add tests for Docker Registry API - [x] Add tests for a views - [x] Make texts nicer - [x] Implement a backup support - [ ] Create administration documentation https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/4141 - [ ] Create user documentation See merge request !4040
2016-05-18Merge branch 'patch-1' into 'master' Dmitriy Zaporozhets
Fix broken link in CI quickstart docs The newline between the `[label]` and the `(link)` caused it to be interpreted literally: http://doc.gitlab.com/ce/ci/quick_start/README.html See merge request !3541
2016-05-18Add documentation for Inline DiffRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-05-18Make it clearer that /licenses is the OS license templates endpointRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-05-18Update documentationFelipe Artur
2016-05-17Update permission docKamil Trzcinski
2016-05-17Merge remote-tracking branch 'origin/master' into docker-registry-viewKamil Trzcinski
2016-05-17Merge branch 'issue_14684' into 'master' Douwe Maan
Toggle email signup confirmation in admin settings Implements toggling verification email #14684 See merge request !3862
2016-05-16Change landing page when skipping confirmation email and add documentationFelipe Artur
2016-05-16Merge branch 'docker-registry' into 'master' Douwe Maan
Added authentication service for docker registry This adds a simple authentication service for docker which uses current user credentials to authenticate pulls and pushes. I have only one concern. Since the `.docker/config` is unencrypted, thus the password for user stored there is unencrypted, maybe we should from the start implement function to generate/provide a separate password just for the purposes of accessing docker registry? What do you think @jacobvosmaer @sytses @marin? cc @marin See merge request !3787
2016-05-14Merge branch 'docker-registry' into docker-registry-viewKamil Trzcinski
2016-05-14Merge remote-tracking branch 'origin/master' into docker-registryKamil Trzcinski
# Conflicts: # config/initializers/1_settings.rb
2016-05-14Change all occurrences of doc.gitlab.com to docs.gitlab.comAchilleas Pipinellis
[ci skip]
2016-05-13Revert "Merge branch 'doc-fix-db-gem-install-instructions' into 'master' "Rémy Coutable
This reverts commit 66d8ef1ad9d5952b7e7f026658f71aafc861950e, reversing changes made to 6a8359f3d3be01af6f5b124b61af7ee1c77c17d0. The `--with` option was added in Bundler 1.10 but in this case it shouldn't even be needed: I've tested the original command locally and the pg gem was installed, so I believe the user that opened the original MR ran the wrong command (i.e. `sudo -u git -H bundle install --without development test postgres --deployment` instead of `sudo -u git -H bundle install --without development test mysql --deployment`. See discussion at https://gitlab.com/gitlab-org/gitlab-ce/commit/66d8ef1ad9d5952b7e7f026658f71aafc861950e for more context.
2016-05-12Add API endpoints for un/subscribing from/to a labelAhmad Sherif
Closes #15638
2016-05-12Merge branch 'otzy007/gitlab-ce-disable_oauth_sign_in_sources'Douwe Maan
2016-05-12Merge branch 'patch-2' into 'master' Marin Jankovski
Update cas.md to reflect the current syntax, and added that gitlab-ctl reconfigure should be run. I spent a while trying to figure our why the cas wasn't working! Someone may need to update the source code section of the wiki See merge request !3850
2016-05-12Updated migration styleguide for new helpersYorick Peterse
2016-05-12Revert "new screenshot for the docs on how to enabled/disable OmniAuth Sign ↵Andrei Gliga
In" [ci skip] This reverts commit 7b295370efc124360d52e37e8e709914028f6443.
2016-05-12new screenshot for the docs on how to enabled/disable OmniAuth Sign InAndrei Gliga
2016-05-12config/gitlab.yml between ``Andrei Gliga
2016-05-12corrections to the Enable or disable Sign In with OmniAuthAndrei Gliga
2016-05-12documentation for enabling or disabling OAuth sign inAndrei Gliga
2016-05-12Merge branch 'update-8-8-guides' into 'master' Yorick Peterse
Update 8.8 guides See merge request !4119
2016-05-11Merge branch 'hook-docs-behavior' into 'master' Robert Speicher
Improve documentation and web test for web hooks Tips and documentation of actual hook behavior. Improved user feedback when testing hooks via the web UI. See merge request !4015
2016-05-11Update 8.8 guidesValery Sizov
2016-05-09Fix review commentsKamil Trzcinski
2016-05-09Update docs/api/projects.md with container registry enabled optionKamil Trzcinski
2016-05-09Rename `images` to `container_registry`Kamil Trzcinski
2016-05-09Revert "Merge branch 'patch-1' into 'master'"Rémy Coutable
This reverts merge request !4030
2016-05-09Expose MergeRequest#user_notes_count in the API and use the method in issues ↵Rémy Coutable
list Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-05-09API: Expose Issue#user_notes_countcnam-dep
2016-05-09Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ceDmitriy Zaporozhets
2016-05-09Merge branch 'document-adding-instrumentation' into 'master' Rémy Coutable
Added documentation on how to instrument methods This will hopefully remove me as a single point of failure when it comes to adding instrumentation. cc @axil @rspeicher See merge request !4035
2016-05-09Remove spaceJacob Vosmaer
2016-05-08Merge branch 'docs/adapt-user-api' into 'master' Achilleas Pipinellis
docs(api): adapted user API documentation to match with latest API The user API documentation and the actual implementation were out of sync, missing certain newly introduced fields and beeing inconsistent between certain API definitions. The documentation was changed according the actual latest implementation. Signed-off-by: Fabio Huser <fabio@fh1.ch> See merge request !4067
2016-05-08Merge branch 'patch-3' into 'master' Achilleas Pipinellis
blost -> blog See merge request !4063