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
2023-12-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2023-07-14Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2023-07-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2023-07-10Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2023-07-08Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2023-07-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2023-07-06Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-12-06Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-11-25Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-02-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-01-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-12-22Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-11-23Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-10-22Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-08-04Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-07-08Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-06-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-04-30Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-02-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-02-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-02-04Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-11-29Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-11-26Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-11-24Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-09-30Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-09-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-07-27Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-04-06Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-04-03Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-09Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-16Add latest changes from gitlab-org/gitlab@masterogolowinski-master-patch-27476GitLab Bot
2019-10-15Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-08-07Compress images with pngquantAchilleas Pipinellis
2019-07-09Docs: audit/auditor docs imagesMarcel Amirault
2019-05-17Docs: Remove all remaining orphaned images.Marcel Amirault
2019-05-05Docs: Merge Misc EE doc/administration files and dirs to CEMarcel Amirault
2019-04-10Update housekeeping docs to match UIGreg Myers
Correct screenshot and menu location on housekeeping docs
2019-03-26Allow custom hooks errors to appear in GitLab UILuke Duncalfe
Error messages from custom pre-receive hooks now appear in the GitLab UI. This is re-enabling a feature that had been disabled in merge request https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/18646 The feature had been disabled due to security concerns that information which was not intended to be public (like stack traces) would leak into public view. PreReceiveErrors (from pre-receive, post-receive and update custom hooks) are now filtered for messages that have been prefixed in a particular way. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/48132
2018-10-10Remove Git circuit breakerZeger-Jan van de Weg
Was introduced in the time that GitLab still used NFS, which is not required anymore in most cases. By removing this, the API it calls will return empty responses. This interface has to be removed in the next major release, expected to be 12.0.
2018-08-27Compress all PNG images under doc/Achilleas Pipinellis
The pngquant tool was used https://pngquant.org, and particularly, the following command: /usr/bin/pngquant -f --skip-if-larger --ext .png --speed 1 image.png Before: 47584K After : 34924K
2018-07-31Remove gitlab:user:check_repos taskZeger-Jan van de Weg
While reviewing this branch it was noted that this task was broken. Given the limited value this task brings, and given the fact that much of the old behaviour has been moved to be automatically fixed, removing was a good option. Suggestion in: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/20806#note_91261001
2018-04-02Move repository, storage, abuse settings and logging settings to expandable ↵Dmitriy Zaporozhets
sections Also reorganize application settings related to repository in more maninful sections Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2017-10-23Allow configuring new circuitbreaker settings from the UI and APIBob Van Landuyt
2017-10-17Allow configuring the circuitbreaker through the API and UIBob Van Landuyt
2017-08-04Add a Circuitbreaker for storage pathsBob Van Landuyt
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
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-09Introduce better credential and error checking to `rake gitlab:ldap:check`Drew Blessing
It was previously possible for invalid credential errors to go unnoticed in this task. Users would believe everything was configured correctly and then sign in would fail with 'invalid credentials'. This adds a specific bind check, plus catches errors connecting to the server. Also, specs :)