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
2022-02-18Add latest changes from gitlab-org/gitlab@14-8-stable-eev14.8.0-rc42GitLab Bot
2021-08-19Add latest changes from gitlab-org/gitlab@14-2-stable-eev14.2.0-rc42GitLab Bot
2021-07-20Add latest changes from gitlab-org/gitlab@14-1-stable-eev14.1.0-rc42GitLab Bot
2020-11-19Add latest changes from gitlab-org/gitlab@13-6-stable-eev13.6.0-rc42GitLab 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-01-27Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-20Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-07-26Add frozen_string_literal to spec/lib (part 1)Thong Kuah
Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
2019-04-15Validate refs used in controllers don't have spacesStan Hu
This avoids an unnecessary call to Gitaly and reduces gRPC errors. * Closes https://gitlab.com/gitlab-org/gitaly/issues/1425 * Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/58572
2018-11-20Revert "Merge branch 'revert-e2aa2177' into 'master'"Zeger-Jan van de Weg
This reverts merge request !23229
2018-11-20Revert "Merge branch 'zj-improve-gitaly-pb' into 'master'"Sean McGivern
This reverts merge request !23140
2018-11-19Remove duplicate tests for GitalyZeger-Jan van de Weg
The disabling of Gitaly was basically stubbing `Feature.enabled?` call, which was never triggered.
2018-07-09Fix handling of annotated tags when Gitaly is not in useStan Hu
Attempting to view an annotated tag in the TreeController would result in `NoMethodError: undefined method 'tree'` when Rugged was in use. `Blob#find_by_rugged` assumes that the ref is a true. Using the commit ID ensures that the right ref is being used. Note that in 11.1, `Blob#find` no longer uses Rugged, so this is only a bug in 11.0. Closes gitlab-org/gitlab-ce#47797
2017-08-09Enable the Layout/SpaceBeforeBlockBraces copRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-08-01Rename many path_with_namespace -> full_pathGabriel Mazetto
2017-07-27Use described_class when possibleRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-07-27Remove superfluous lib: true, type: redis, service: true, models: true, ↵Rémy Coutable
services: true, no_db: true, api: true Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-07-07Include new URL helpers retroactively into includers of Gitlab::RoutingDouwe Maan
2017-06-21Enable Style/DotPosition Rubocop :cop:Grzegorz Bizon
2017-06-14Correct RSpec/SingleLineHook cop offensesRobert Speicher
2017-02-23Revert "Prefer leading style for Style/DotPosition"Douwe Maan
This reverts commit cb10b725c8929b8b4460f89c9d96c773af39ba6b.
2017-02-23Enable Style/WordArrayDouwe Maan
2017-02-23Prefer leading style for Style/DotPositionDouwe Maan
2017-01-25Use `:empty_project` where possible throughout spec/libRobert Speicher
2016-10-11Allow browsing branches that end with '.atom'Sean McGivern
We need to do two things to support this: 1. Simplify the regex capture in the routing for the CommitsController to not exclude the '.atom' suffix. That's a perfectly valid git branch name, so we shouldn't blow up if we get it. 2. Because Rails now can't automatically detect the request format, add some code to do so in `ExtractPath` when there is no path. This means that, given branches 'foo' and 'foo.atom', the Atom feed for the former is unroutable. To fix this: don't do that! Give the branches different names!
2016-08-24Add failing test for #21334winniehell
2016-08-19Do not escape URI when extracting path (!5878)winniehell
2016-08-19Add failing test for gitlab-com/support-forum#952winniehell
2016-08-11Fix front-end for branches that happen to contain urlencoding escape ↵Elliot
characters (e.g. %) Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-08-09adds second batch of tests changed to active tensetiagonbotelho
2016-04-01Added & use Gitlab::Routing for URL helpersYorick Peterse
Rails' "url_helpers" method creates an anonymous Module (which a bunch of methods) on every call. By caching the output of this method in a dedicated method we can shave off about 10 seconds of loading time for an issue with around 200 comments.
2015-12-09Tag lib specsDouwe Maan
2015-08-26Groundwork for merging CI into CEDouwe Maan
2015-08-02Fix "Network" and "Graphs" pages for branches with encoded slashesStan Hu
Closes #1359
2015-07-01Extract the longest-matching ref from a commit path when multiple matches occurStan Hu
Closes #1839
2015-06-23Merge branch 'master' into rubocop-for-testsDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> Conflicts: spec/features/issues_spec.rb spec/models/forked_project_link_spec.rb spec/models/hooks/service_hook_spec.rb spec/models/hooks/web_hook_spec.rb spec/models/project_services/hipchat_service_spec.rb spec/requests/api/project_members_spec.rb spec/requests/api/projects_spec.rb spec/requests/api/system_hooks_spec.rb spec/services/archive_repository_service_spec.rb spec/support/matchers.rb spec/tasks/gitlab/backup_rake_spec.rb
2015-06-22Fix Style/SpaceInsideHashLiteralBraces cop violationsRobert Speicher
These fixes were performed automatically by Rubocop's `-a` flag.
2015-06-22Update mock and stub syntax for specsRobert Speicher
2015-04-27Fix bug where commit data would not appear in some subdirectoriesStan Hu
The upgrade from Rails v4.1.2 to v4.1.9 (76aad9b76ed) caused slashes in a tree to be escaped automatically. Using wildcard globs prevents this behavior. Closes #1478, #1459
2015-02-12Updated rspec to rspec 3.x syntaxJeroen van Baarsen
Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com>
2013-12-15fix most of warningsskv
2013-03-21Fix 404 error while displaying json files.Sato Hiroyuki
It uses params[:id] instead of request.fullpath. It should fix #3132.
2013-01-23Remove relative_url_root from path. Fixes #2602Jun Futagawa
Files and Commits render a 404 when running with relative_url_root.
2013-01-05Fixed styles, ProjectHook specs etcDmitriy Zaporozhets
2012-12-25Fix routing issues when navigating over tree, commits etcDmitriy Zaporozhets
2012-10-04ExtractsPath: Use ref_names instead of branches+tagsRobert Speicher
2012-10-04Fix bug with branches whose name contains slashValeriy Sizov
2012-09-27Rename RefExtractor to ExtractsPathRobert Speicher
Update docs a bit