summaryrefslogtreecommitdiff
path: root/app
Commit message (Collapse)AuthorAgeFilesLines
* Updated tests for deploy keysproject-deploy-keys-uiPhil Hughes2016-04-251-6/+4
|
* Project deploy keys updated UIPhil Hughes2016-04-255-97/+110
| | | | Closes #13992
* Merge branch 'scss-empty-rule' into 'master' Jacob Schatz2016-04-254-12/+0
|\ | | | | | | | | | | | | | | | | | | | | | | | | Enable the EmptyRule SCSS Linter Prevents empty SCSS rules from being included in the SCSS. Also fixes the handful of lints caught by the linter. Regarding the `.gh` rule in monokai.scss, which was added in [this commit](https://gitlab.com/gitlab-org/gitlab-ce/commit/bf079c24afb8ad2991a4eaf60a71a7bc45dd775d), it appears to be empty in [the original file as well](https://github.com/richleland/pygments-css/blob/master/monokai.css). So I think it's fine to delete the selector. cc: @jschatz1 See merge request !3769
| * Enable the EmptyRule SCSS Linter.Connor Shea2016-04-164-12/+0
| | | | | | | | | | | | Prevents empty SCSS rules from being included in the SCSS. Also fixes the handful of lints caught by the linter.
* | Fix license detection to detect all license files, not only known licensesRémy Coutable2016-04-252-15/+15
| | | | | | | | | | | | Fixes #15470. Signed-off-by: Rémy Coutable <remy@rymai.me>
* | Merge branch 'feature/snumb130/hide-future-blocks-on-graph' into 'master' Robert Speicher2016-04-241-0/+4
|\ \ | | | | | | | | | | | | | | | | | | Hiding future dates on contribution calendar Fixes #9036 See merge request !2628
| * | Updating cal-heatmap-rails gem to 3.6.0 and hiding future dates.Luke Howell2016-04-241-0/+4
| | |
* | | Allow middle-click on a Todo row to open in a new tabRobert Speicher2016-04-241-1/+2
|/ /
* | Merge branch '15513-fix-undefined-can-method' into 'master' Robert Speicher2016-04-221-1/+1
|\ \ | | | | | | | | | | | | | | | | | | Use the `can?` helper instead of `current_user.can?` Fixes #15513. See merge request !3882
| * | Use the `can?` helper instead of `current_user.can?`15513-fix-undefined-can-methodRémy Coutable2016-04-221-1/+1
| | | | | | | | | | | | | | | | | | Fixes #15513. Signed-off-by: Rémy Coutable <remy@rymai.me>
* | | Merge branch 'escape-label-title' into 'master' Jacob Schatz2016-04-221-1/+1
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Correctly escapes label title in filters Fixes #15522 See merge request !3880
| * | | Escapes label title in filtersescape-label-titlePhil Hughes2016-04-221-1/+1
| |/ / | | | | | | | | | Fixes #15522
* | | Fixed issue with assignee object not being returnedPhil Hughes2016-04-222-2/+2
|/ / | | | | | | Closes #15515
* | Merge branch 'issue_3799' into 'master' Rémy Coutable2016-04-222-1/+12
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | Allow filtering by Owned projects on dashboard page Closes #3799 ![Screen_Shot_2016-04-15_at_9.40.52_PM](/uploads/440498c5647bda282304891307931a02/Screen_Shot_2016-04-15_at_9.40.52_PM.png) See merge request !3762
| * \ Merge remote-tracking branch 'origin/master' into issue_3799Alfredo Sumaran2016-04-21176-980/+1880
| |\ \
| * | | Do not display filters if user if there's no current_userAlfredo Sumaran2016-04-211-7/+8
| | | |
| * | | Use compact syntaxAlfredo Sumaran2016-04-211-4/+1
| | | |
| * | | Allow filtering by Owned projectsAlfredo Sumaran2016-04-182-1/+14
| | | |
* | | | Merge branch 'confirmation-screen' into 'master' Robert Speicher2016-04-226-2/+60
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Improved email confirmation UX Closes #4228 See merge request !3184
| * | | | Improved confirmation UXconfirmation-screenPhil Hughes2016-04-216-2/+60
| | | | | | | | | | | | | | | | | | | | Closes #4228
* | | | | Merge branch 'rs-diff_view' into 'master' Rémy Coutable2016-04-223-4/+9
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Always read diff_view setting from the cookie Prior, when the user had their view set to "parallel" and then visited a merge request's changes tab _without_ passing the `view` parameter via query string, the view would be parallel but the `Notes` class was always instantiated with the default value from `diff_view` ("inline"), resulting in broken markup when the form to add a line note was dynamically inserted. The cookie is set whenever the view is changed, so this value should always be up-to-date. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/14557 and https://gitlab.com/gitlab-org/gitlab-ce/issues/15285 See merge request !3732
| * | | | | Clarify that the diff view setting always comes from the cookiers-diff_viewRobert Speicher2016-04-191-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | This invalidates one test, which we've removed.
| * | | | | Always read diff_view setting from the cookieRobert Speicher2016-04-142-2/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Prior, when the user had their view set to "parallel" and then visited a merge request's changes tab _without_ passing the `view` parameter via query string, the view would be parallel but the `Notes` class was always instantiated with the default value from `diff_view` ("inline"), resulting in broken markup when the form to add a line note was dynamically inserted. The cookie is set whenever the view is changed, so this value should always be up-to-date. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/14557
* | | | | | Use association search in issuable create serviceGrzegorz Bizon2016-04-221-6/+6
| | | | | |
* | | | | | Verify label affiliation before assigning to issueGrzegorz Bizon2016-04-221-2/+26
| |/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This also verify if milestone belongs to correct project before creating a new issue. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/15439
* | | | | Merge branch 'label-text-color-sidebar' into 'master' Robert Speicher2016-04-213-3/+3
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes text color on labels in sidebar Previously the labels in the sidebar would just have `#FFF` text color which could cause problems with a light background color. With this, the text color comes from the JSON. See merge request !3846
| * | | | | Reverted label link helperlabel-text-color-sidebarPhil Hughes2016-04-211-1/+1
| | | | | |
| * | | | | Reverted link changesPhil Hughes2016-04-211-1/+1
| | | | | |
| * | | | | Removed console.logPhil Hughes2016-04-211-1/+0
| | | | | |
| * | | | | Fixes text color on labels in sidebarPhil Hughes2016-04-214-5/+6
| | | | | |
* | | | | | Merge branch '15465-fix-sort-by-due-date' into 'master' Yorick Peterse2016-04-211-3/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove the `.distinct` when finding issues See merge request !3858
| * | | | | | Remove the `.distinct` when finding issues15465-fix-sort-by-due-dateRémy Coutable2016-04-211-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is not needed anymore after !3815. Signed-off-by: Rémy Coutable <remy@rymai.me>
* | | | | | | Merge branch 'remove-update-files' into 'master' Yorick Peterse2016-04-215-3/+1
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removed JS update templates See merge request !3814
| * | | | | | | Removed JS update templatesremove-update-filesPhil Hughes2016-04-195-3/+1
| | |_|_|/ / / | |/| | | | |
* | | | | | | Remove float from iconAnnabel Dunstone2016-04-211-0/+5
| |_|_|_|/ / |/| | | | |
* | | | | | Merge branch 'master' of https://gitlab.com/gitlab-org/gitlab-ceRémy Coutable2016-04-218-99/+76
|\ \ \ \ \ \
| * \ \ \ \ \ Merge branch 'label-dropdown-fix' into 'master' Jacob Schatz2016-04-218-99/+76
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes "create label" functionality on label dropdown **Issue sidebar** ![label_dropdown](/uploads/2a056136fc88626530fc275ded0c2aa3/label_dropdown.gif) **Issues page** ![label_dropdown_issues](/uploads/965fd20f5b206499e9b11a64556c5240/label_dropdown_issues.gif) See merge request !3670
| | * \ \ \ \ \ Merge remote-tracking branch 'origin/master' into label-dropdown-fixlabel-dropdown-fixAlfredo Sumaran2016-04-2042-181/+655
| | |\ \ \ \ \ \
| | * \ \ \ \ \ \ Merge remote-tracking branch 'origin/master' into label-dropdown-fixAlfredo Sumaran2016-04-201-14/+11
| | |\ \ \ \ \ \ \
| | * \ \ \ \ \ \ \ Merge remote-tracking branch 'origin/master' into label-dropdown-fixAlfredo Sumaran2016-04-20145-726/+1373
| | |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # Conflicts: # app/views/shared/issuable/_sidebar.html.haml
| | * | | | | | | | | Move shared html to a partialAlfredo Sumaran2016-04-183-34/+21
| | | | | | | | | | |
| | * | | | | | | | | Add is-link attribute to know if a menu item should not be stoppedAlfredo Sumaran2016-04-182-2/+2
| | | | | | | | | | |
| | * | | | | | | | | Remove $parentAlfredo Sumaran2016-04-181-6/+5
| | | | | | | | | | |
| | * | | | | | | | | Fix create label functionalityAlfredo Sumaran2016-04-151-41/+25
| | | | | | | | | | |
| | * | | | | | | | | Fix Label dropdown and organize codeAlfredo Sumaran2016-04-155-6/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # Conflicts: # app/assets/javascripts/labels_select.js.coffee
| | * | | | | | | | | Render proper partialAlfredo Sumaran2016-04-152-2/+2
| | | | | | | | | | |
| | * | | | | | | | | Add spacesAlfredo Sumaran2016-04-151-3/+3
| | | | | | | | | | |
| | * | | | | | | | | Reuse partial for Create Label pageAlfredo Sumaran2016-04-153-18/+21
| | | | | | | | | | |
| | * | | | | | | | | Restore broken codeAlfredo Sumaran2016-04-151-9/+6
| | | | | | | | | | |
* | | | | | | | | | | Merge branch 'master' of dev.gitlab.org:gitlab/gitlabhqRémy Coutable2016-04-212-2/+2
|\ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / |/| | | | | | | | | |