summaryrefslogtreecommitdiff
path: root/app/views/shared/projects
Commit message (Collapse)AuthorAgeFilesLines
* Fix dropdownsClement Ho2018-04-171-2/+2
|
* [skip ci] label-warning => badge-warningClement Ho2018-04-131-1/+1
|
* [skip ci] Convert .label. to .badge.Clement Ho2018-04-131-1/+1
|
* Allow maintainers to edit directly in a forkBob Van Landuyt2018-03-071-0/+6
|
* Port `read_cross_project` ability from EEBob Van Landuyt2018-02-221-2/+2
|
* Retrieve project creator's avatar by creator, not creator#email.Andreas Brandl2018-02-131-1/+1
|
* Resolve "Icons on forks page are to big"Simon Knox2018-01-161-1/+1
|
* Replaced some fork icons instances and fixed the Icon component on the MR WidgetJose Ivan Vargas2017-12-191-1/+1
|
* Resolve "Display member role per project"Mike Greiling2017-12-072-4/+13
|
* fix some icon colors. move text-color styles to common.scssSimon Knox2017-11-231-1/+1
|
* Groups tree enhancements for Groups Dashboard and Group HomepageKushal Pandya2017-10-041-1/+1
|
* Adds cacheless render to Banzai object render34509-improves-markdown-rendering-performance-for-commits-listTiago Botelho2017-09-061-2/+1
|
* Add an option to list only archived projectsMehdi Lahmam2017-08-241-1/+4
| | | | Closes #35994
* Use Prev/Next pagination for exploring projectspagination-projects-exploreYorick Peterse2017-08-141-1/+1
| | | | | | | | | | 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
* Merge branch 'dashboard-projects-controller-query-performance' into 'master'Sean McGivern2017-08-071-1/+1
|\ | | | | | | | | Improve various parts of Dashboard::ProjectsController See merge request !13319
| * Improve checking if projects would be returnedYorick Peterse2017-08-071-1/+1
| | | | | | | | | | | | | | | | | | | | 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.
* | Add a missing whitespace in "private forks you have no access to"Mehdi Lahmam2017-08-061-1/+1
|/ | | | Fix #35786
* Fix 500 error when rendering avatar for deleted project creatorAthar Hameed2017-07-281-1/+1
|
* Create and use project path helpers that only need a project, no namespaceDouwe Maan2017-07-051-1/+1
|
* Removes pending delete from filter scopesTiago Botelho2017-06-281-1/+1
|
* Fix application error when Project#last_activity_at is nil34276-fix-dashboard-page-when-last-activity-at-is-nilRuben Davila2017-06-261-1/+1
|
* Revert 'New file from interface on existing branch'dm-revert-mr-8427Douwe Maan2017-06-092-18/+0
|
* Use last_activity_at attr when showing the update date in project listing32869-project-s-last-updated-time-not-accurately-reflected-in-projects-dashboardRuben Davila2017-06-031-1/+1
|
* Remove top padding on project list rowproject-list-alignmentAnnabel Dunstone Gray2017-04-271-1/+1
|
* Merge branch '26509-show-update-time' into 'master' Annabel Dunstone Gray2017-04-261-15/+19
|\ | | | | | | | | | | | | Add updated time to project list Closes #26509 See merge request !8514
| * Add updated time to project listJeff Stubler2017-04-211-15/+19
| |
* | Load a project's CI status in batch from redisBob Van Landuyt2017-04-261-0/+1
| |
* | Fixed project & group icons not being clickableproject-group-icon-linksPhil Hughes2017-04-191-4/+5
|/ | | | Closes #31073
* ProjectsFinder should handle more optionsJacopo2017-04-061-1/+1
| | | | | | | | | | | | | | | | | | | Extended ProjectFinder in order to handle the following options: - current_user - which user use - project_ids_relation: int[] - project ids to use - params: - trending: boolean - non_public: boolean - starred: boolean - sort: string - visibility_level: int - tags: string[] - personal: boolean - search: string - non_archived: boolean GroupProjectsFinder now inherits from ProjectsFinder. Changed the code in order to use the new available options.
* Fix admin projects page in admin areaAlfredo Sumaran2017-03-291-1/+1
|
* Fixes project list lines breakingPhil Hughes2017-03-232-31/+31
| | | | | | | | | | | 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
* Build project cache key in a helper27376-cache-default-branch-pipeline-on-projectBob Van Landuyt2017-03-161-2/+1
|
* Update the cache key to only include what is requiredBob Van Landuyt2017-03-161-2/+2
|
* Render cached pipeline status on project dashboardBob Van Landuyt2017-03-161-3/+3
|
* Merge branch 'fix/gb/dashboard-commit-status-caching' into 'master' Sean McGivern2017-03-141-1/+1
|\ | | | | | | | | | | | | Improve fragment caching rules at projects dashboard Closes #28364 See merge request !9895
| * Improve fragment caching rules at projects dashboardGrzegorz Bizon2017-03-131-1/+1
| |
* | New file from interface on existing branchJacopo2017-03-132-0/+18
|/ | | | | | Now you can create a new file and select a target_branch != source_branch. If the file that you want to create already exists on the target branch an error message is shown A glDropdown is used to select and create a new branch instead of a text field.
* Refactor projects filtering by nameDmitriy Zaporozhets2017-03-034-28/+32
| | | | | | | | | | | | 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>
* Fixes filtering by name reseting archive filterPhil Hughes2017-03-032-8/+20
| | | | | | Previously the search form just wasn't including any params that had previously been set, so when you filtered by name, it would reset all the params & therefore ignoring the archived param Closes #28007
* Merge branch 'dz-create-nested-groups-via-ui' into 'master' Dmitriy Zaporozhets2017-02-091-0/+12
|\ | | | | | | | | Allow creating nested group via UI See merge request !8786
| * Allow creating nested group via UIdz-create-nested-groups-via-uiDmitriy Zaporozhets2017-02-071-0/+12
| | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | fixes mobile viewredesign-searchbar-admin-project-26794Nur Rony2017-01-311-1/+1
|/
* HAMLLint: Fix `SpaceInsideHashAttributes` offencesKushal Pandya2016-12-311-1/+1
|
* Update avatar container name so it doesnt conflict with other image containersremove-wiki-image-border-radiusAnnabel Dunstone Gray2016-11-031-1/+1
|
* 23545 Fix distorted project and group avatarstauriedavis2016-11-011-4/+5
|
* Enable CacheMarkdownField for the remaining modelsNick Thomas2016-10-071-1/+1
| | | | | | | | | | | | | | | | | | | | This commit alters views for the following models to use the markdown cache if present: * AbuseReport * Appearance * ApplicationSetting * BroadcastMessage * Group * Issue * Label * MergeRequest * Milestone * Project At the same time, calls to `escape_once` have been moved into the `single_line` Banzai pipeline, so they can't be missed out by accident and the work is done at save, rather than render, time.
* Merge branch 'add-delimiter-project-stats' into 'master' Jacob Schatz2016-08-171-2/+2
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add delimiter to project stars and forks count ## What does this MR do? Adds the `number_with_delimiter()`to the project stars and fork counts on the projects dashboard. ## Are there points in the code the reviewer needs to double check? Shouldn't be any :smiley: ## Why was this MR needed? Improve readability and adhere to the [UI guide](https://gitlab.com/help/development/ui_guide.md#counts) ## What are the relevant issue numbers? Closes #20746 ## Screenshots (if relevant) Before: ![Screen_Shot_2016-08-09_at_1.30.44_PM](/uploads/69592ce220d64774e265cfbcfcb6864a/Screen_Shot_2016-08-09_at_1.30.44_PM.png) After: ![Screen_Shot_2016-08-09_at_1.30.58_PM](/uploads/1470179256614c2e47cc9d0e49aeaf09/Screen_Shot_2016-08-09_at_1.30.58_PM.png) ## Does this MR meet the acceptance criteria? - [x] [CHANGELOG](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CHANGELOG) entry added - Tests - [x] All builds are passing - [x] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides) - [x] Branch has no merge conflicts with `master` (if you do - rebase it please) - [x] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits) See merge request !5741
| * Add delimiter to project stars and forks countClement Ho2016-08-091-2/+2
| |
* | Add archived badge to project listingDrew Blessing2016-08-121-0/+2
| |
* | Align visibility icons on group pagegroup-icon-alignmentAnnabel Dunstone2016-07-251-1/+1
|/