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-08-20Add latest changes from gitlab-org/gitlab@13-3-stable-eeGitLab Bot
2020-07-20Add latest changes from gitlab-org/gitlab@13-2-stable-eeGitLab Bot
2020-06-18Add latest changes from gitlab-org/gitlab@13-1-stable-eeGitLab Bot
2020-05-20Add latest changes from gitlab-org/gitlab@13-0-stable-eeGitLab Bot
2020-04-03Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-27Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-26Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-29Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-23Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-08-28Fix moving issues API failing when text includes commit URLsStan Hu
When a issue is moved from one project to another, all associated Markdown text is rewritten in the context of the new project. If the note contained a link to a commit URL, `CommitRewriter#rewrite` would fail because `Commit#link_reference_pattern` would match `nil` `commit` values in the HTML generated from the Markdown. These `nil` values were passed along to `Project#commits_by` because `Commit#reference_valid?` was always returning `true`. To prevent this issue from happening, we tighten up the check for `Commit#reference_valid?` to look for valid SHA values. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/66666
2019-08-07Prevent rewritting plain links as embeddedFelipe Artur
Prevents rewritting plain image/video links as embedded when moving issues.
2018-07-03Fix minor spec review comments in uploader specsStan Hu
2018-07-03fix an issue with local filesMicaël Bergeron
2018-07-03add support for file copy on object storageMicaël Bergeron
2018-07-03When moving issues, don't attempt to move files in object storageStan Hu
Closes #48505
2018-02-07Use hashed storage in the specsNick Thomas
2018-02-01port of 594e6a0a625^..f74c90f68c6Micaël Bergeron
2017-12-22Replace '.team << [user, role]' with 'add_role(user)' in specsblackst0ne
2017-09-20Fix rewriting issue references with group milestonesGrzegorz Bizon
2017-08-03Change all `:empty_project` to `:project`Robert Speicher
2017-08-01Rename many path_with_namespace -> full_pathGabriel Mazetto
2017-06-14Correct RSpec/SingleLineHook cop offensesRobert Speicher
2017-01-25Use `:empty_project` where possible throughout spec/libRobert Speicher
2016-12-16Enable Style/MultilineOperationIndentation in Rubocop, fixes #25741Rydkin Maxim
2016-12-03Add shorthand support to gitlab markdown referencesOswaldo Ferreira
2016-11-09Merge branch 'issue_23548_dev' into 'master'Douwe Maan
disable markdown in comments when referencing disabled features fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/23548 This MR prevents the following references when tool is disabled: - issues - snippets - commits - when repo is disabled - commit range - when repo is disabled - milestones This MR does not prevent references to repository files, since they are just markdown links and don't leak information. See merge request !2011 Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-10-19Unfold references for group labels when moving issue to another projectDouglas Barbosa Alexandre
2016-05-24Enable RSpec/NotToNot cop and auto-correct offensesRobert Speicher
Also removes the note from the development/testing.md guide
2016-03-31Fix rubocop offenses in upload rewriter specsGrzegorz Bizon
2016-03-31Extend specs for GFM uploads rewriterGrzegorz Bizon
2016-03-30Remove reduntant `move_to_store` overrideGrzegorz Bizon
2016-03-30Refactor uploads rewriter used when moving issueGrzegorz Bizon
2016-03-30Get FileUploader into test harness using factoryGrzegorz Bizon
This attempts to get CarrierWave's uploader - `FileUploader` into test harness using a factory. that makes it easier to build an instance of it. Along with !3435 it may be easier to use uploaders in tests
2016-03-30Add uploads rewriter and use it when moving issueGrzegorz Bizon
2016-03-20Find referable for each ref found in references rewriterGrzegorz Bizon
2016-03-20Rename reference unfolder to rewriter, minor refactoringsGrzegorz Bizon
2016-03-19Update reference unfolder according to recent ability changesGrzegorz Bizon
Commit 43d8bdb4f048cbeb5675ed9120cb1aeb415b9586 introduced additional checks for permissions to read issue in references extractor.
2016-03-17Add implementation of reference unfolder using banzaiGrzegorz Bizon
2016-03-17Move reference unfolder for GFM to separate classGrzegorz Bizon