- 01 Nov, 2016 16 commits
-
-
Robert Speicher authored
Blacklist the OSL 3.0 license See merge request !7171
-
Fatih Acet authored
Do not show tooltip for active element ## What does this MR do? Change Bootstrap's default for tooltips to display them only when hovering and not for the active element. See also here: https://getbootstrap.com/javascript/#tooltips-options ## Screenshots ### Before ![before](/uploads/c5b7bd9eba07ca61bfa5ba014d08dd1a/before.webm) ### After ![after](/uploads/d8c4a69e5a6797d8d26ab92cb96fcb2d/after.webm) ## What are the relevant issue numbers? Closes #23794 See merge request !7105
-
Sean McGivern authored
Fix Markdown styling inside reference links Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/18096. Based off https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/6609. See merge request !7169
-
Sean McGivern authored
Fix project visibility level link Fix wrong syntax for link generation. See merge request !7201
-
Sean McGivern authored
Update tags.md See merge request !7202
-
panjan authored
Fixes: https://gitlab.com/gitlab-org/gitlab-ce/issues/18096
-
Sean McGivern authored
Optimize group labels page Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/23684 Closes https://gitlab.com/gitlab-org/gitlab-ee/issues/1148 See merge request !7123
-
winniehell authored
-
Douglas Barbosa Alexandre authored
-
Douglas Barbosa Alexandre authored
-
Douglas Barbosa Alexandre authored
-
Douglas Barbosa Alexandre authored
-
Douglas Barbosa Alexandre authored
-
Douglas Barbosa Alexandre authored
-
Fatih Acet authored
Updated positioning of copy file path button in diffs ## What does this MR do? Updated the positioning of the copy file path button in diffs. ## Screenshots (if relevant) ![Screen_Shot_2016-10-31_at_16.53.24](/uploads/53de39ce550855f86b90d2d9fc227f95/Screen_Shot_2016-10-31_at_16.53.24.png) ## What are the relevant issue numbers? Closes #23591 See merge request !7203
-
Rémy Coutable authored
GrapeDSL for branches endpoints No changelog item as it doesn't change behaviour Cherry-picket from !6330 See merge request !6630
-
- 31 Oct, 2016 20 commits
-
-
Fatih Acet authored
Add ES array methods as cause of Phantom.js errors. ## What does this MR do? Adds another example of something that causes a common error in JavaScript testing to the frontend dev docs. See merge request !7102
-
Fatih Acet authored
Resolve "Clean up commit meta info view" Updates commit page design Before: ![Screen_Shot_2016-10-19_at_10.20.10_AM](/uploads/8737a9db01bffc019d8b2c71a943024b/Screen_Shot_2016-10-19_at_10.20.10_AM.png) After: ![Screen_Shot_2016-10-19_at_10.20.01_AM](/uploads/716cb902bd20dedc705a8f81f6536736/Screen_Shot_2016-10-19_at_10.20.01_AM.png) ![Screen_Shot_2016-10-19_at_10.27.01_AM](/uploads/4228575f50990a88bc828037d8fb99f2/Screen_Shot_2016-10-19_at_10.27.01_AM.png) Closes #20892 See merge request !6994
-
Rémy Coutable authored
[ci skip] Signed-off-by: Rémy Coutable <remy@rymai.me>
-
Phil Hughes authored
Closes #23591
-
Sean McGivern authored
Fix builds tab visibility closes #23951 See merge request !7178
-
Douwe Maan authored
-
Douwe Maan authored
# Conflicts: # app/workers/project_web_hook_worker.rb
-
Douwe Maan authored
Fix lightweight tags not processed correctly by GitTagPushService ## What does this MR do? Fix lightweight tags not processed correctly by GitTagPushService ## Are there points in the code the reviewer needs to double check? No ## Why was this MR needed? Lightweight tags were being processed incorrectly, causing tag triggers to receive wrong information and not function properly. ## Does this MR meet the acceptance criteria? - [ ] [CHANGELOG](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CHANGELOG) entry added - [ ] [Documentation created/updated](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/development/doc_styleguide.md) - [ ] API support added - Tests - [ ] Added for this feature/bug - [ ] All builds are passing - [ ] Conform by the [merge request performance guides](http://docs.gitlab.com/ce/development/merge_request_performance_guidelines.html) - [ ] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides) - [ ] Branch has no merge conflicts with `master` (if you do - rebase it please) - [ ] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits) ## What are the relevant issue numbers? Closes #22271 See merge request !6532
-
Roman Pickl authored
-
Yorick Peterse authored
Optimize Event queries by removing default order See merge request !7130
-
Z.J. van de Weg authored
-
Sean McGivern authored
Remove unreferenced LFS objects from DB and fs Fixes #3666 See merge request !5901
-
Sean McGivern authored
-
Sean McGivern authored
Remove unreferenced LFS objects from DB and fs Fixes #3666 See merge request !5901
-
Dmitriy Zaporozhets authored
Bump gitlab-shell version to 4.0.0 New version includes https://gitlab.com/gitlab-org/gitlab-shell/merge_requests/102 and needed for https://gitlab.com/gitlab-org/gitlab-ce/issues/2772 See merge request !7200
-
Andrea Scarpino authored
-
Dmitriy Zaporozhets authored
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-
Felipe Artur authored
-
Sean McGivern authored
Improve docs on `gitlab-ci-token` user See merge request !6002
-
Rémy Coutable authored
Restrict teaspoon tasks introduced by !6059 to development environment. Otherwise we get syntax errors in production environment, see https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/6059#note_17597729 See merge request !7189
-
- 29 Oct, 2016 1 commit
-
-
winniehell authored
-
- 28 Oct, 2016 3 commits
-
-
Fatih Acet authored
Fixed sticky MR tabs positioning when sidebar is pinned ## What does this MR do? The sticky MR tabs where positioned underneath the pinned sidebar. This fixes that by accounting for the size of the pinned nav. ## Screenshots (if relevant) ![Screen_Shot_2016-10-28_at_09.37.18](/uploads/0d23f2bb0e02d698c012c22c8653afd7/Screen_Shot_2016-10-28_at_09.37.18.png) ## What are the relevant issue numbers? Closes #23926 See merge request !7167
-
Fatih Acet authored
Do not allow text input in dropdown while loading ## What does this MR do? It moves the focus event of the text input of a filterable dropdown to after loading of options is complete. After the fix, the user cannot edit the while it's greyed out and loading. ## Are there points in the code the reviewer needs to double check? ## Why was this MR needed? It fixes the bug in https://gitlab.com/gitlab-org/gitlab-ce/issues/23496. ## Screenshots (if relevant) ![https://gitlab.com/gitlab-org/gitlab-ce/uploads/a7bc2f0228fcde5a85cccb333b52f0e3/2016-10-18_12.00.54.gif](https://gitlab.com/gitlab-org/gitlab-ce/uploads/a7bc2f0228fcde5a85cccb333b52f0e3/2016-10-18_12.00.54.gif) ## What are the relevant issue numbers? Fixes #23496 See merge request !7054
-
Phil Hughes authored
Closes #23926
-