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-07-27Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-07-09Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-08-23Update GitHub CI/CD import page to use PAT onlyScott Hampton
Oauth2 tokens are causing issues with mirroring repos, because it effectively limits the number of repos you can mirror. Personal Access Tokens do not have this problem. This change removes the OAuth2 option from the import page for CI/CD only, and only provides the personal access token form.
2019-02-13Improve the GitHub and Gitea import feature table interfaceLuke Bennett
These are frontend changes. Use Vue for the import feature UI for "githubish" providers (GitHub and Gitea). Add "Go to project" button after a successful import. Use CI-style status icons and improve spacing of the table and its component. Adds ETag polling to the github and gitea import jobs endpoint.
2019-02-13Improve the GitHub and Gitea import feature table interfaceLuke Bennett
These are backend changes. Use Vue for the import feature UI for "githubish" providers (GitHub and Gitea). Add "Go to project" button after a successful import. Use CI-style status icons and improve spacing of the table and its component. Adds ETag polling to the github and gitea import jobs endpoint.
2019-01-29Fix Bitbucket Server import not allowing personal projectsStan Hu
Bitbucket Server places personal projects in a namespace called `~username`. This change allows those projects and also strips them from the GitLab namespace. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/53419
2018-11-10Make sure there's only one slash as path separatorStan Hu
In Ruby 2.4, `URI.join("http://test//", "a").to_s` will remove the double slash, however it's not the case in Ruby 2.5. Using chomp should work better for the intention, as we're not trying to allow things like ../ or / paths resolution. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/53180
2018-09-07Enable frozen string for app/helpers/**/*.rbgfyoung
Partially addresses #47424.
2018-08-24Use slugs for default project path and sanitize names before importStan Hu
Users importing from Bitbucket Cloud, Bitbucket Server, or GitHub often complained about getting failed imports due to 422 errors. This change ensures that project names are imported with names that are guaranteed to pass the regular expression validation. Part of #50021
2018-03-13Fix provider server URL used when listing repos to importRubén Dávila
Also use Gitlab::Auth::OAuth::Provider.config_for to access OmniAuth config
2018-03-07CE backport for creating CI/CD projects from GitHubRubén Dávila
2018-03-06Merge branch 'ce-3839-ci-cd-only-projects-fe' into 'master'Robert Speicher
Create CI/CD-only projects by URL -- CE backport See merge request gitlab-org/gitlab-ce!17342
2018-03-05CI/CD-only projects FEEric Eastwood
See https://gitlab.com/gitlab-org/gitlab-ee/issues/3839 Conflicts: app/assets/javascripts/projects/project_new.js app/views/shared/_import_form.html.haml ee/app/controllers/ee/projects_controller.rb ee/spec/features/projects/new_project_spec.rb locale/gitlab.pot
2018-03-05Replace deprecated path_with_namespace with full_pathDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2017-08-14Whitelist or fix additional `Gitlab/PublicSend` cop violationsRobert Speicher
An upcoming update to rubocop-gitlab-security added additional violations.
2017-03-21Merge branch 'fix-links-target-blank' into 'security'Jacob Schatz
Adds rel="noopener noreferrer" to all links with target="_blank" See merge request !2071
2016-12-19Reduce duplication for GitHubish import status viewRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-12-19Modify GithubImport to support GiteaRémy Coutable
The reason is that Gitea plan to be GitHub-compatible so it makes sense to just modify GitHubImport a bit for now, and hopefully we can change it to GitHubishImport once Gitea is 100%-compatible. Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-12-19Rename Gogs to Gitea, DRY the controller and improve viewsRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-12-19Gogs ImporterKim "BKC" Carlbäcker
2016-08-31Don't create groups for unallowed users when importing projectsDouglas Barbosa Alexandre
2016-04-19Fix GitHub project's link on import page when provider has a custom URLDouglas Barbosa Alexandre