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
2020-06-10Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-23Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-22Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-20Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-16Add latest changes from gitlab-org/gitlab@masterogolowinski-master-patch-80898GitLab Bot
2019-05-01Update metrics dashboard API to load yml from repoSarah Yasonik
Updates the EnvironmentController#metrics_dashboard endpoint to support a "dashboard" param, which can be used to specify the filepath of a dashboard configuration from a project repository. Dashboard configurations are expected to be stored in .gitlab/dashboards/. Updates dashboard post-processing steps to exclude custom metrics, which should only display on the system dashboard.
2019-03-19Revert "Merge branch..."Rémy Coutable
This reverts merge request !26183
2019-03-18New Repository#insights_config methodRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-11-16Fix rubocop warningJames Lopez
2018-11-16Remove redundant end anchorsJames Lopez
2018-11-16Update regex to use unionJames Lopez
2018-11-14Fix text rendering of readme/indexJames Lopez
2018-11-02Test type of README file without extensionAchilleas Pipinellis
2018-11-02Render index.* like README.* when it's present in a directoryJakub Jirutka
Resolves #18933
2018-10-22Enable frozen string for lib/gitlab/*.rbgfyoung
2018-10-13Remove Koding integration and documentationStan Hu
This integration no longer works and does not appear to be supported. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/39697
2018-09-06Recognize 'UNLICENSE' license filesJ.D. Bean
2018-05-22Fix Xcode project detection by looking for dirs instead of filesDouwe Maan
2018-05-09Add Repository#xcode_project? methodDouwe Maan
2018-01-31Enable RuboCop Style/RegexpLiteralTakuya Noguchi
2017-10-12Cache issuable template namesSean McGivern
We were looking these up on each request to an issue page, because the form is pre-filled, as is the template dropdown. That was unnecessary: we could just treat these as 'special' repository files (like the rendered README) and cache them in Redis until they change on a push.
2017-10-12Match full file path in FileDetectorSean McGivern
The basename appears to have been a holdover from the past - it doesn't look necessary now. Some of the regexes were unanchored on one side, so explicitly ensure that they only match the root. Apart from that, this means that pushing to foo/README.md will no longer invalidate the main README cache for a project.
2017-05-17Add auxiliary blob viewers to dependency filesDouwe Maan
2017-05-13Select dependency linker based on file typeDouwe Maan
2017-05-11Implement auxiliary blob viewersDouwe Maan
2017-02-23Enable Style/MutableConstantDouwe Maan
2016-11-21Unify detecting of special repository filesYorick Peterse
This moves the logic of detecting special repository files (e.g. a README or a Koding configuration file) to a single class: Gitlab::FileDetector. Moving this logic into a single place allows this to be re-used more easily. This commit also changes Repository#gitlab_ci_yaml so that its cached similar to other data (e.g. the Koding configuration file).