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-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-24Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-19Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-02Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-05-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-05-01Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-04-24Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-03Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-30Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-10Enable serving static objects from an external storageAhmad Sherif
It consists of two parts: 1. Redirecting users to the configured external storage 1. Allowing the external storage to request the static object(s) on behalf of the user by means of specific tokens Part of https://gitlab.com/gitlab-com/gl-infra/infrastructure/issues/6829
2019-01-22Add `client_detection` helper to add browser and plaform flagsKushal Pandya
2018-10-05Resolve "Drop down filter for project snippets"Fabian Schneider
2018-09-18Improve TabHelper to clarify the use of Namespaces for the nav_linkGabriel Mazetto
2018-06-27Fix merge requests data source key to be camelCaseKushal Pandya
2018-05-07Merge branch '4084-epics-username-autocomplete-ce' into 'master'Douwe Maan
Backport CE changes from "autocomplete usernames in Epic comments/description" See merge request gitlab-org/gitlab-ce!18605
2018-05-04Backport of 4084-epics-username-autocompleteMario de la Ossa
2018-04-25Fix commit trailer rendering when Gravatar is disabledDouwe Maan
2018-02-13Extract repeated logic into #avatar_icon_for.Andreas Brandl
This essentially allows to pass both user and email, so that we can either prefer the user to retrieve the avatar or (if user is not present) fall back to the email lookup.
2018-02-13Remove generic #avatar_icon helper.Andreas Brandl
2018-02-13Refactor and split ApplicationHelper#avatar_icon.Andreas Brandl
When we don't use the original `ApplicationHelper#avatar_icon` anymore, we can just remove it (and its specs). Closes #42800.
2018-01-28Make default_avatar return a full path.Felix Geyer
Callers expect a URL. This fixes the avatars in commit lists when a user has no avatar and Gravatar is disabled. Closes #38715
2018-01-25Default to HTTPS for all Gravatar URLsAchilleas Pipinellis
If using gravatar.com, both plain_url and ssl_url in settings are now served via HTTPS. Make this the default.
2017-11-09Always return full avatar URL for private/internal groups/projects when ↵Douwe Maan
asset host is set
2017-10-18Prevent ApplicationHelper specs from polluting later onesSean McGivern
We don't want the locale to be set to Brazilian Portuguese for any subsequent specs!
2017-10-18Build the locale path with an `_` instead of a `-`Bob Van Landuyt
The locale code is turned into an asset path with an underscore instead of a dash. The language codes are transformed by `I18n.locale` into a code with a dash. But the resources for translating are always stored in a path using a `_` separating the language and the region code.
2017-10-04Fixed TestsTim Zallmann
2017-10-04Fixed Linting errors + testsTim Zallmann
2017-08-03Change all `:empty_project` to `:project`Robert Speicher
2017-07-24Resolve "Lazy load images on the Frontend"Tim Zallmann
2017-07-18Update specs for new upload pathBob Van Landuyt
2017-07-05Create and use project path helpers that only need a project, no namespaceDouwe Maan
2017-07-04Use stub_application_setting when testing ApplicationHelper#support_urlRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-06-21Enable Style/DotPosition Rubocop :cop:Grzegorz Bizon
2017-06-20Fix avatar images in pipeline emailsSean McGivern
2017-06-14Correct RSpec/SingleLineHook cop offensesRobert Speicher
2017-06-14Help landing page customizationsRobin Bobbitt
2017-06-08Bring in security changes from the 9.2.5 releaseDJ Mountney
Ran: - git format-patch v9.2.2..v9.2.5 --stdout > patchfile.patch - git checkout -b 9-2-5-security-patch origin/v9.2.2 - git apply patchfile.patch - git commit - [Got the sha ref for the commit] - git checkout -b upstream-9-2-security master - git cherry-pick <SHA of the patchfile commit> - [Resolved conflicts] - git cherry-pick --continue
2017-05-10Use relative paths for group/project/user avatarsblackst0ne
2017-04-27Cache the rendered README, but post-process on showToon Claes
Because the post-processing of the rendered README is dependent on the context (i.e. the current user), do the post-processing when the README is being displayed.
2017-03-05Merge branch 'format-timeago-date' into 'master' Jacob Schatz
Formats timeago dates to be more friendly Closes #27537 See merge request !9145
2017-02-24Use Namespace#full_path instead of #path where appropriateDouwe Maan
2017-02-15Add active_when helperSemyon Pupkov
Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/24036
2017-02-13Fixed timeago specsPhil Hughes
2017-01-26Use `:empty_project` where possible in helper specsRobert Speicher
2016-12-15Add Gitlab::Middleware::MultipartJacob Vosmaer
2016-11-18Use `Gitlab.config.gitlab.host` over `'localhost'`Lin Jen-Shin
This would fix long standing failures running tests on my development machine, which set `Gitlab.config.gitlab.host` to another host because it's not my local computer. Now I finally cannot withstand it and decided to fix them once and for all.
2016-11-07Replace jQuery.timeago with timeago.jsClement Ho