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
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