summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Another CS style fixissue-fade-loadPhil Hughes2016-03-181-1/+1
|
* Fixed some CS styling issuesPhil Hughes2016-03-184-74/+85
| | | | Fixed bug where wouldn't work on MR index
* Fixed issue with dashboard issues not reloadingPhil Hughes2016-03-184-6/+17
|
* Changing filter dropdowns shows loadingPhil Hughes2016-03-185-15/+42
| | | | Instead of doing a full refresh of the page - i've modified the filterResults method on the Issues object to work for this form as well
* Merge branch 'improve-diff-ui' into 'master' Jacob Schatz2016-03-181-1/+9
|\ | | | | | | | | | | | | | | | | | | | | | | Add space to separate different files in diff I propose to add some visual separation between files in diff. Originally this separation was removed in 8.0 because of different UI layout. Now when we have white layout back I think it will be better to add some space between files. - - - Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> See merge request !3275
| * Add space to separate different files in diffimprove-diff-uiDmitriy Zaporozhets2016-03-171-1/+9
| | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | Merge branch 'project-cache-worker-without-diverging' into 'master' Jacob Vosmaer2016-03-182-18/+30
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removed diverging commit count calculation from Repository#build_cache Using a repository with 1000 branches the old `Repository#build_cache` method would take around 180 seconds to complete. Without calculating the diverging commit counts this method "only" takes around 60 seconds. See commit 28cc2413eb5ddf920ce0b5eed803121f8b884754 for more details. This fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/14058 cc @rspeicher See merge request !3274
| * | Added tests for Repository#build_cacheproject-cache-worker-without-divergingYorick Peterse2016-03-171-0/+30
| | |
| * | Don't rebuild diverging commit count cachesYorick Peterse2016-03-171-6/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | When calling Repository#build_cache we _don't_ want to build the diverging commit count cache as doing so can be _very_ slow for repositories with lots of branches. Because these caches are built whenever needed (= when actually viewing the list of branches in the web UI) we can safely remove this code from Repository#build_cache.
| * | Removed Repository#rebuild_cacheYorick Peterse2016-03-171-12/+0
| | | | | | | | | | | | This method is not used or tested anywhere.
* | | Merge branch 'optimistic-todos' into 'master' Jacob Schatz2016-03-187-9/+90
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adds small AJAX optimistic functionality to todos. Fixes #13656 <br/> A good first step and boring solution. <br/> Will make ajax call to remove each issue. <br/> If issue is last in group of issues will refresh page. <br/> If issues remain in group will remove row with JS. <br/> Adds loading spinner to button and disables. <br/> ![todos-optimistic](/uploads/c6aec4a688e5125d4df55a2a3a55d4d7/todos-optimistic.gif) <br/> cc @dzaporozhets @JobV @dbalexandre See merge request !2946
| * | | Fixed failing testsoptimistic-todosPhil Hughes2016-03-171-1/+0
| | | |
| * | | Mark all as done through AJAXPhil Hughes2016-03-174-8/+35
| | | |
| * | | Removed the flash success messagePhil Hughes2016-03-175-41/+35
| | | | | | | | | | | | | | | | Removes the group if empty
| * | | Remove `Flash` from todos when finishedJacob Schatz2016-03-171-1/+0
| | | |
| * | | Adds small AJAX optimistic functionality to todos.Jacob Schatz2016-03-176-5/+67
| | | | | | | | | | | | | | | | | | | | Fixes #13656 A good first step and boring solution.
* | | | Merge branch 'fix-any-milestone-value' into 'master' Jacob Schatz2016-03-181-1/+2
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes issue with any milestone value in dropdown not being selectable Closes #14293 See merge request !3234
| * | | | Changed any variable name to save confusionPhil Hughes2016-03-181-2/+2
| | | | |
| * | | | Removed comparing against textPhil Hughes2016-03-181-1/+2
| | | | |
| * | | | Fixes issue with any milestone value in dropdown not being selectablePhil Hughes2016-03-181-1/+1
|/ / / / | | | | | | | | | | | | Closes #14293
* | | | Merge branch 'fix-group-members-ui' into 'master' Dmitriy Zaporozhets2016-03-181-0/+4
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add side padding to content-list if inside panel Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> Fixes #14367, #14349 See merge request !3273
| * | | | Add side padding to content-list if inside panelfix-group-members-uiDmitriy Zaporozhets2016-03-171-0/+4
| | |_|/ | |/| | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | | | Merge branch 'fix-issue-14338' into 'master' Achilleas Pipinellis2016-03-185-5/+5
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use relative links in `doc`, fix broken generated HTML links Links like (doc/web_hooks/web_hooks.md) work in the GitLab source code web interface, but the HTML generator produces broken links in the `doc` subdirectories: http://doc.gitlab.com/ce/hooks/doc/web_hooks/web_hooks.html instead of the right one http://doc.gitlab.com/ce/web_hooks/web_hooks.html in http://doc.gitlab.com/ce/hooks/custom_hooks.html. Fixes #14338 See merge request !3261
| * | | | Use relative links in `doc`, fix broken generated HTML linksAnatoly Borodin2016-03-175-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Links like (doc/web_hooks/web_hooks.md) work in the GitLab source code web interface, but the HTML generator produces broken links in the `doc` subdirectories: http://doc.gitlab.com/ce/hooks/doc/web_hooks/web_hooks.html instead of the right one http://doc.gitlab.com/ce/web_hooks/web_hooks.html in http://doc.gitlab.com/ce/hooks/custom_hooks.html. Fixes #14338 [ci skip] Signed-off-by: Anatoly Borodin <anatoly.borodin@gmail.com>
* | | | | Merge branch 'ci-duplication' into 'master' Achilleas Pipinellis2016-03-181-36/+1
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove CI duplication. See merge request !3290
| * | | | | Remove CI duplication.ci-duplicationSytse Sijbrandij2016-03-171-36/+1
|/ / / / /
* | | | | Merge branch 'improve-award-emoji-spinach-tests' into 'master' Robert Speicher2016-03-182-4/+11
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Improve award emoji test reliability by checking that the emoji is displayed before the search field is focused See merge request !3288
| * | | | | Improve award emoji test reliability by checking that the emoji is displayedStan Hu2016-03-172-4/+11
| | | | | | | | | | | | | | | | | | | | | | | | before the search field is focused
* | | | | | Merge branch 'issue_14374' into 'master' Robert Speicher2016-03-181-3/+4
|\ \ \ \ \ \ | |/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Check push permissions only when pushing directly to target branch. Fixes #14374 See merge request !3280
| * | | | | Check push permissions only when pushing directly to target branch.issue_14374Rubén Dávila2016-03-171-3/+4
| | | | | |
* | | | | | Merge branch 'fix_dropdown_getting_cut_off_in_page' into 'master' Jacob Schatz2016-03-171-0/+7
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix bug causing dropdown to get cut off in project page closes #14336 ### Before ![Screen_Shot_2016-03-16_at_11.30.40_PM](/uploads/9f8dd10f0627cdfbd49d7127b233b105/Screen_Shot_2016-03-16_at_11.30.40_PM.png) ![Screen_Shot_2016-03-16_at_11.30.53_PM](/uploads/6dfe64d68867d158a11be7e74cbd1520/Screen_Shot_2016-03-16_at_11.30.53_PM.png) ### After ![Screen_Shot_2016-03-16_at_11.30.14_PM](/uploads/2b87cc17522e8a425a97a78b36982873/Screen_Shot_2016-03-16_at_11.30.14_PM.png) See merge request !3257
| * | | | | | fix bug causing dropdown to get cut off in project pagefix_dropdown_getting_cut_off_in_pageArinde Eniola2016-03-161-0/+7
| | |/ / / / | |/| | | |
* | | | | | Merge branch 'fix_issue_mr_page_inconsistency' into 'master' Jacob Schatz2016-03-172-13/+15
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix inconsistency in the header of issue and merge request pages closes #13550 # For Issue Page ### Before ![Screen_Shot_2016-03-17_at_8.46.59_PM](/uploads/ede7f2b98395362ae87e6258cc10520a/Screen_Shot_2016-03-17_at_8.46.59_PM.png) ### After ![Screen_Shot_2016-03-17_at_8.48.56_PM](/uploads/da7adf17cb397ddc0677a6a5e8033b8e/Screen_Shot_2016-03-17_at_8.48.56_PM.png) # For Merge request Page ### Before ![Screen_Shot_2016-03-17_at_8.45.45_PM](/uploads/10137827c05c8166a0aa429687e50d1b/Screen_Shot_2016-03-17_at_8.45.45_PM.png) ### After ![Screen_Shot_2016-03-17_at_8.45.01_PM](/uploads/92151c03cfe29b71090a1e0ad31abd6e/Screen_Shot_2016-03-17_at_8.45.01_PM.png) See merge request !3279
| * | | | | | Fix inconsistency in the header of issue and merge request pagesArinde Eniola2016-03-172-13/+15
| | | | | | |
* | | | | | | Merge branch 'download-dropdown-alignment' into 'master' Jacob Schatz2016-03-172-1/+7
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed alignment of download dropdown With the new dropdown CSS - some dropdowns might look a bit odd ## Previously ![Screen_Shot_2016-03-16_at_11.46.04](/uploads/c1a8fc95ed4410de35d7bd5caedf28f5/Screen_Shot_2016-03-16_at_11.46.04.png) ## Now ![Screen_Shot_2016-03-16_at_11.45.26](/uploads/998637fe0872b2e826a8c17d183499dc/Screen_Shot_2016-03-16_at_11.45.26.png) See merge request !3245
| * | | | | | | Fixed alignment of download dropdowndownload-dropdown-alignmentPhil Hughes2016-03-162-1/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With the new dropdown CSS - some dropdowns might look a bit odd
* | | | | | | | Merge branch 'filter-spacing' into 'master' Jacob Schatz2016-03-171-14/+3
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed filter spacing Closes #14350 ![Screen_Shot_2016-03-17_at_10.21.33](/uploads/5b8f39134cc90ce1dd6565f665a39838/Screen_Shot_2016-03-17_at_10.21.33.png) See merge request !3267
| * | | | | | | | Fixed filter spacingfilter-spacingPhil Hughes2016-03-171-14/+3
| | |_|_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | Closes #14350
* | | | | | | | Merge branch 'git-2-7-4' into 'master' Robert Speicher2016-03-173-6/+9
|\ \ \ \ \ \ \ \ | |_|_|_|_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bump Git version requirement to 2.7.4 [ci skip] See merge request !3281
| * | | | | | | Merge branch 'master' into git-2-7-4Douwe Maan2016-03-1725-156/+452
| |\ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | |
* | | | | | | | Merge branch 'edited-text' into 'master' Robert Speicher2016-03-176-18/+29
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Edited timeago text on comments Unified the 'edited text' to be the same in descriptions and comments Closes #5538 See merge request !3063
| * | | | | | | | Added skip_js commentedited-textPhil Hughes2016-03-161-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ci skip]
| * | | | | | | | Fixed failing rubocop testPhil Hughes2016-03-101-5/+5
| | | | | | | | |
| * | | | | | | | Fixed issue with timeago not firingPhil Hughes2016-03-105-7/+24
| | | | | | | | |
| * | | | | | | | Single if statementPhil Hughes2016-03-101-5/+3
| | | | | | | | |
| * | | | | | | | Fixed ruby issues from feedbackPhil Hughes2016-03-105-28/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed failing tests
| * | | | | | | | Edited timeago text on commentsPhil Hughes2016-03-106-24/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Unified the 'edited text' to be the same in descriptions and comments Closes #5538
* | | | | | | | | Merge branch 'blue-links-fix' into 'master' Jacob Schatz2016-03-171-4/+0
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Revert color for links inside gray areas **Before** ![Screen_Shot_2016-03-17_at_12.23.17_PM](/uploads/55e518721d83c3bfc42edba3e97ec44d/Screen_Shot_2016-03-17_at_12.23.17_PM.png) **After** ![Screen_Shot_2016-03-17_at_12.23.03_PM](/uploads/08fbf8e9139e4eadf191102cffd29617/Screen_Shot_2016-03-17_at_12.23.03_PM.png) Reverts !3147 See merge request !3276
| * | | | | | | | | Revert link color from blueblue-links-fixAlfredo Sumaran2016-03-171-4/+0
| | |_|_|_|_|_|/ / | |/| | | | | | |
* | | | | | | | | Merge branch 'hide-builds-feature' into 'master' Robert Speicher2016-03-174-63/+76
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Hide builds from Project's settings when the feature is disabled Resolves https://gitlab.com/gitlab-org/gitlab-ce/issues/13944 See merge request !3220