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
2023-03-20Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-12-23Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-12-06Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-11-15Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-10-15Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-03-10Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-12-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-09-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-02-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-02-09Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-12-01Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-10-30Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-08-14Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-05-25Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-05-08Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-14Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-08-30Improve search result labelsMarkus Koller
- Use "results" instead of "blobs", "wiki blobs", "snippet blobs" - Use "comments" instead of "notes" - Use correct pluralization - Don't add "1 - 10 of" if there's only one page
2019-07-29Added navbar searches usage ping counterFrancisco Javier López
Added usage ping counter when the user makes a search through the navbar search component.
2019-07-26Add frozen_string_literal to spec/featuresThong Kuah
Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
2019-05-31Fix search dropdown not closing on blur if emptyLuke Bennett
2018-07-11Resolve "Rename the `Master` role to `Maintainer`" BackendMark Chao
2018-07-05Enable Capybara/FeatureMethods copWinnie Hellmann
2018-01-24Use limit for search count queriesJan Provaznik
Search query is especially slow if a user searches a generic string which matches many records, in such case search can take tens of seconds or time out. To speed up the search query, we search only for first 1000 records, if there is >1000 matching records we just display "1000+" instead of precise total count supposing that with such amount the exact count is not so important for the user. Because for issues even limited search was not fast enough, 2-phase approach is used for issues: first we use simpler/faster query to get all public issues, if this exceeds the limit, we just return the limit. If the amount of matching results is lower than limit, we re-run more complex search query (which includes also confidential issues). Re-running the complex query should be fast enough in such case because the amount of matching issues is lower than limit. Because exact total_count is now limited, this patch also switches to to "prev/next" pagination. Related #40540
2017-12-22Replace '.team << [user, role]' with 'add_role(user)' in specsblackst0ne
2017-08-03Change all `:empty_project` to `:project`Robert Speicher
2017-07-27Remove superfluous type defs in specsKeifer Furzland
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-06-29Change gitlab_sign_in to sign_in where possibleRobert Speicher
2017-06-20Change `login_with` uses to `gitlab_sign_in`Robert Speicher
Change single `login_via` use to `gitlab_sign_in_via`
2017-04-21Use `:empty_project` where possible in top-level feature specsRobert Speicher
2016-11-08Fix broken commits searchValery Sizov