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-04-20Add latest changes from gitlab-org/gitlab@14-10-stable-eev14.10.0-rc42GitLab Bot
2021-03-16Add latest changes from gitlab-org/gitlab@13-10-stable-eev13.10.0-rc40GitLab Bot
2020-01-08Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-06Remove "n private forks you have no access to"Camil Staps
2019-08-07Add empty state for starred projects tab on user pageCamil Staps
2019-08-02Resolve Incorrect empty state message on "Explore projects"Dennis Tang
2019-06-27Avoid loading pipeline status in search resultsStan Hu
This improves the performance of search, since the pipeline status is not displayed. Identified in https://gitlab.com/gitlab-org/gitlab-ce/issues/56627
2019-02-06Resolve "Empty states for profile page"Dennis Tang
2019-01-09First pass at updated profile empty stateFernando Arias
2018-12-13Resolve "Redesign project lists UI"Martin Wortschack
2018-10-15Resolve "Personal projects pagination in Profile Overview tab is broken"Martin Wortschack
2017-12-07Resolve "Display member role per project"Mike Greiling
2017-08-14Use Prev/Next pagination for exploring projectsYorick Peterse
This changes the pagination of the "Explore" pages so they use a simpler pagination system that only shows "Prev" and "Next" buttons. This removes the need for getting the total number of rows to display, a process that can easily take up to 2 seconds when browsing through a large list of projects. Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/27390
2017-08-07Merge branch 'dashboard-projects-controller-query-performance' into 'master'Sean McGivern
Improve various parts of Dashboard::ProjectsController See merge request !13319
2017-08-07Improve checking if projects would be returnedYorick Peterse
In various places we check if the same relation would return projects. This is done using "any?" which will run a COUNT query with any LIMIT/OFFSET values still applied. To work around all this we introduce 2 helper methods that take care of doing the right thing. This leads to the produced queries being simpler and fewer queries being executed.
2017-08-06Add a missing whitespace in "private forks you have no access to"Mehdi Lahmam
Fix #35786
2017-06-28Removes pending delete from filter scopesTiago Botelho
2017-04-26Load a project's CI status in batch from redisBob Van Landuyt
2017-03-23Fixes project list lines breakingPhil Hughes
This will only hapen in certain situations ie. when the star count is a lot. We were previously fixing it by hard coding a max-width. This changes it to use flexbox which allows the content to decide when it should be truncated. The rows don't always need truncating, so we shouldn't hard code a width. Closes #29018
2017-03-03Refactor projects filtering by nameDmitriy Zaporozhets
Reuse same search form and behavior for dashboard#projects, group#projects and admin#projects. Repsect all other options like sorting, personal filter when search projects by name. Create FilterableList JS class to handle identical behaviour of projects and groups lists. This change also makes filtering and sorting availabe on explore#projects and explore#groups no matter if you are logged in or not. Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2016-06-10Moved private forks notice to projects-list so its above the pagination and ↵Luke "Jared" Bennett
inline with list Updated CHANGELOG Removed CHANGELOG entry
2016-03-03Refactor projects listDmitriy Zaporozhets
1. Fix double bottom border if pagination 2. Fix broken search on forks page 4. Remove duplicate js logic 4. Remove unused show all link 5. Remove duplicate “no project” message in different views After this merge request you can easily render shared projects template with all necessary html/js included to make searchable list with pagination. All you need to provide is controller that returns projects list with seach nad pagination and render html form with project-filter-form id and text field with filter_projects name. Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2016-03-03Merge branch 'improve-user-tabs' into 'master' Jacob Schatz
Add routes and actions for dynamic tab loading. Closes #13588 and #13584 See merge request !2961
2016-03-02Use the .nothing-here-block class when projects list is emptyRémy Coutable
2016-02-29Add routes and actions for dynamic tab loadingJosh Frye
2016-02-26Cleanup css for projects listDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2016-02-09Extract events rendering to own action.Josh Frye
2016-02-09Starred, All, and Trending on explore are paged also group projects. Need ↵Josh Frye
ajax filter.
2016-02-04Implement changes from MR feedbackJosh Frye
2016-02-04Various filter fixesJosh Frye
2016-02-04Paginate + ajax filter dashboard projectsJosh Frye
2016-01-20Show last commit as description. #2406Rubén Dávila
2016-01-20Show forks counter on listing. #2406Rubén Dávila
2016-01-20Use Project creator's avatar in fork listing. #2406Rubén Dávila
2015-11-10Replace CoffeeScript block into JavaScript in Views.Jason Lee
For example view: shared/issuable/_context CoffeeScript: 190ms JavaScript: 19.7ms
2015-10-13Project names are not fully shown if group name is too big, even on group ↵Valery Sizov
page view
2015-09-24Show CI status on Your projects page and Starred projects pageDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-09-18Fix 500 on trending projects if isntance has 100k+ projectsDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-08-26Refactor project list renderingDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>