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
2017-01-26Add a system hook for when a project is updated.Tommy Beadle
This sends a project_update hook when a repo is updated. This does not include renaming or transferring a project. Those are covered by project_rename and project_transfer. This will get called, however, when the visibility is changed.
2017-01-25Merge branch 'patch-12' into 'master' Sean McGivern
Update enviroments.md - example CURL requests had a typo in the URL See merge request cd ../gdk-ee/
2017-01-25Merge branch 'mrchrisw/rake-redis' into 'master' Stan Hu
Add redis version to info rake task See merge request !8283
2017-01-25Add redis version to info rake taskChris Wilson
2017-01-25Update enviroments.md - example CURL requests had a typo in the URLMarc van Gend
2017-01-24Merge branch '24923_nested_tasks' into 'master' Sean McGivern
Fix nested tasks in ordered list Closes #24923 See merge request !8626
2017-01-24Merge branch 'patch-12' into 'master' Rémy Coutable
Fix typo in link to "Services Templates" page. See merge request !8709
2017-01-24Add docs for resolve conflicts editorAchilleas Pipinellis
[ci skip]
2017-01-24Merge the two 2FA docs into oneAchilleas Pipinellis
[ci skip]
2017-01-24fix nested tasks in ordered listJarka Kadlecova
2017-01-24Add due dates docsAchilleas Pipinellis
[ci skip]
2017-01-24Merge branch 'patch-12' into 'master' James Lopez
Fix hash of ruby in update documentation See merge request !8735
2017-01-24Add link to confidential issues MRAchilleas Pipinellis
[ci skip]
2017-01-24Add docs for confidential issuesAchilleas Pipinellis
[ci skip]
2017-01-24Fix hash of ruby archive in documentationMaximilien Cuony
2017-01-24Merge branch 'no-more-bosses' into 'master' Stan Hu
Rename endboss -> maintainer, miniboss -> reviewer See merge request !8719
2017-01-23Fix typo in link to "Services Templates" page.Arnd
2017-01-22correct the prometheus feature configuration according to ↵Marcello
https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/files/gitlab-config-template/gitlab.rb.template#L1147
2017-01-22Merge branch 'docs/prometheus' into 'master' Achilleas Pipinellis
Add Prometheus docs See merge request !8699
2017-01-22Add information on the dashboard and exporter portsAchilleas Pipinellis
[ci skip]
2017-01-22Expose Prometheus docs to the main READMEAchilleas Pipinellis
[ci skip]
2017-01-22Add Prometheus docsAchilleas Pipinellis
Replaces https://gitlab.com/gitlab-org/omnibus-gitlab/merge_requests/1237 Omnibus MR: https://gitlab.com/gitlab-org/omnibus-gitlab/merge_requests/1227 Omnibus issue: https://gitlab.com/gitlab-org/omnibus-gitlab/issues/1481
2017-01-20Merge branch '25851-document-token-scopes' into 'master' Rémy Coutable
Add documentation around OAuth/Personal Access Token scopes. Closes #25851 See merge request !8226
2017-01-20Make university more prominent.sytses
2017-01-20Merge branch 'ci-submodule-doc-update' into 'master' Tomasz Maczukin
Document GIT_SUBMODULE_STRATEGY See merge request !8586
2017-01-19Add an image to the public access documentation and fix wrong profile pathRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-01-19Merge branch 'patch-9' into 'master' Fatih Acet
Add documentation for possible causes of JS-related test failures. See merge request !8214
2017-01-19Merge branch 'document-auto_link_ldap_user' into 'master' Achilleas Pipinellis
Document the `auto_link_ldap_user` setting See merge request !8568
2017-01-19Add Slack slash commands to project services list indexAchilleas Pipinellis
[ci skip]
2017-01-19Add documentation around OAuth/Personal Access Token scopes.Timothy Andrew
2017-01-18Merge branch 'time-tracking-api' into 'master' Sean McGivern
Time tracking API Closes #25861 See merge request !8483
2017-01-18Add some API endpoints for time tracking.Ruben Davila
New endpoints are: POST :project_id/(issues|merge_requests)/(:issue_id|:merge_request_id)/time_estimate" POST :project_id/(issues|merge_requests)/(:issue_id|:merge_request_id)/reset_time_estimate" POST :project_id/(issues|merge_requests)/(:issue_id|:merge_request_id)/add_spent_time" POST :project_id/(issues|merge_requests)/(:issue_id|:merge_request_id)/reset_spent_time" GET :project_id/(issues|merge_requests)/(:issue_id|:merge_request_id)/time_stats"
2017-01-18Merge branch 'backport-time-tracking-ce' into 'master' Douwe Maan
Backport timetracking to CE See merge request !8195
2017-01-18Fixing typoCristian Thiago Moecke
2017-01-17Merge branch '24915_merge_slash_command' into 'master' Sean McGivern
Support `/merge` slash command for MRs Closes #24915 See merge request !7746
2017-01-17Document GIT_SUBMODULE_STRATEGYJonathon Reinhart
This documents the `GIT_SUBMODULE_STRATEGY` feature added in gitlab-ci-multi-runner version 1.10. [ci skip]
2017-01-15Slight modification to the docRegis Freyd
2017-01-15Backport backend work for time tracking.Ruben Davila
2017-01-13Document the `auto_link_ldap_user` settingNick Thomas
2017-01-13Merge branch 'zj-fix-broken-link-docs' into 'master' Robert Speicher
Fix broken link in docs Closes #26544 [ci skip] See merge request !8529
2017-01-13Rename endboss -> maintainer, miniboss -> reviewerSean McGivern
We want to describe these roles in a way that is more understandable to people not familiar with GitLab.
2017-01-13Merge branch 'env-var-in-redis-config' into 'master' Rémy Coutable
Allow to use ENV variables in redis config See merge request !8073
2017-01-13Allow to use ENV variables in redis configSemyon Pupkov
2017-01-13API: Implement project issues iid param with IssuesFinder and add testsDavid Eisner
- Use IssuesFinder for the /issues API resouce - Tests for iid filter in project issues API resource - Tests for No Milestone filter in issues API resources The "No Milestone" case was not previously tested, and the `/issues` resource did not support the the `milestone` parameter. - Return issues where all labels match from the issues and project issues API resources, like the group issues resource already does. See https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/6825#note_17474533 Signed-off-by: Rémy Coutable <remy@rymai.me>
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-12Merge branch 'backup-restore-documentation-tips' into 'master' Marin Jankovski
Add detail to backup_restore omnibus remote storage docs See merge request !8306
2017-01-11Fix broken link in docsZ.J. van de Weg
[ci skip]
2017-01-11support `/merge` slash comand for MRsJarka Kadlecova
2017-01-11Merge branch 'patch-8' into 'master' Achilleas Pipinellis
Clarify instructions for importing Wiki/Merge Request data See merge request !8075
2017-01-10Merge branch 'restore-backup-when-env-variable-is-passed' into 'master' Sean McGivern
Restore backup correctly when "BACKUP" environment variable is passed Closes #26090 See merge request !8477