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
2016-09-07Merge branch 'issue-boards-search' into 'master'Fatih Acet
Added search for all lists on issue boards Adds a search box to allow the user to search all lists in issue boards rather than just the backlog. ![Screen_Shot_2016-08-30_at_10.33.15](/uploads/67e96055d60a9b3209ce3831a1980c09/Screen_Shot_2016-08-30_at_10.33.15.png) ![Screen_Shot_2016-08-30_at_10.33.19](/uploads/8d5253b8f2ecf1cf9a69d70be8ccf1f9/Screen_Shot_2016-08-30_at_10.33.19.png) Closes #21139 See merge request !6101 Conflicts: app/assets/stylesheets/pages/boards.scss app/views/projects/boards/components/_board.html.haml
2016-09-06Merge branch 'issue-boards-issues-total-count' into 'master'Fatih Acet
Add the total number of issues in the JSON response in issue board lists Add the total number of issues in the JSON response in issue board lists The issue board lists should always show the total number of issues in the list, not the current amount fetched by endless scroll. Closes #21327 See merge request !5904 Conflicts: app/assets/stylesheets/pages/boards.scss app/views/projects/boards/components/_board.html.haml
2016-08-20Merge branch 'lbennett/gitlab-ce-17465-search-for-project-with-cursor-keys' ↵Jacob Schatz
into 'master' 17465 Fixed dropdown cursor key navigation ## What does this MR do? This MR fixes the use of cursor/arrow/enter key events with search dropdowns, allowing a user to navigate up and down the list with the arrow keys and then select their item with the enter key. It also applies some *minor* scroll user experience fixes, such as resetting the selected dropdown item every time it opens/closes (also stops multiple dropdowns conflicting) and forcing the dropdown scroll to scroll right to the top or bottom depending on whether they have selected the first or last item, respectively. ## Are there points in the code the reviewer needs to double check? I would like someone with GitLab experience to check over whether this would harm any unique implementations of the GitLabDropdown or SearchAutocomplete. ## Why was this MR needed? The current version has incorrectly behaving search dropdowns in the navbar, they either do not navigate using the keyboard or do not use the enter keystroke to select a highlighted item. ## What are the relevant issue numbers? Fixes #17465. Closes #20752. Closes #21014. **Contributes** to #20754. ## Screenshots (if relevant) ![17465.mp4](/uploads/1145abec226036abbaaa4aa46020f52b/17465.mp4) See merge request !4781
2016-08-19Merge branch 'label-tooltip-sidebar-collapsed' into 'master' Robert Speicher
Added tooltip to label value in collapsed sidebar ## What does this MR do? Adds a list of the issuables labels to a tooltip in the collapsed sidebar. Limited to 5 otherwise the list could get crazy long. Closes #19398 See merge request !5232
2016-08-19Merge branch 'diff-line-comment-vuejs' into 'master' Douwe Maan
Diff line comments resolve ## What does this MR do? Diff line comments can be resolved. Part of #10325 To do: - [x] Backend (@DouweM) - [x] Fix https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/5022#note_13319326. Will be made easier by https://gitlab.com/gitlab-org/gitlab-ce/issues/17237#note_13370331 - [x] System note when all discussions are resolved - [x] Notification when all discussions are resolved - [x] Write unit tests - [x] Look at resolve time https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/5022#note_13912743 - Fixed by 4a13aa9 - [x] Frontend (@iamphill) - [x] Fix bugs - [x] Write more feature tests - [x] Frontend (@connorshea) - [x] Address frontend feedback - [x] Feature specs for Jump feature - [x] Documentation - [x] Add Vue.js in a standard way See merge request !5022
2016-08-17Merge branch 'issue-boards' into 'master'Douwe Maan
Issue boards - Issue: #17907 - Issue backend: #20335 - Backend MR: !5548 - Frontend MR: !5554 - Documentation !5713 - [x] [CHANGELOG](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CHANGELOG) entry added - [X] ~~[Documentation created/updated](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/development/doc_styleguide.md)~~ - [X] ~~API support added~~ - Tests - [x] Added for this feature/bug - [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) - [ ] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits) See merge request !5548
2016-08-05Merge branch 'date-time-to-day-tests' into 'master' Jacob Schatz
Added tests to dateTime utility getDayName method ## What does this MR do? It was missing tests so i've created some tests to check the correct day name is returned See merge request !5324
2016-07-24ES6ify all the things!Fatih Acet
2016-07-18Added tests to dateTime utility getDayName methodPhil Hughes
2016-07-15Merge branch '17341-firefox-u2f' into 'master' Robert Speicher
Allow U2F devices to be used in Firefox - Adds U2F support for Firefox - Improve U2F feature detection logic - Have authentication flow be closer to the spec (single challenge instead of a challenge for each `signRequest`) - Closes #17341 - Related to #15337 See merge request !5177
2016-07-14Use a single challenge for U2F authentication.Timothy Andrew
1. According to the spec, either we have a single challenge with a number of `signRequests`, or a number of `signRequests`, each with it's own challenge. 2. Previously, we had both these - per-request challenges, as well as a single extra challenge. 3. This commit changes this so that the per-request challenges are removed, leaving only a single challenge, as per the v1.1 U2F API. 4. The existing implementation didn't work in Firefox, because the Firefox (extension) implementation is less flexible with regard to the inputs. 5. Fix teaspoon specs. 6. References: https://fidoalliance.org/specs/fido-u2f-v1.0-nfc-bt-amendment-20150514/fido-u2f-javascript-api.html#h2_background
2016-07-12adds test to check json fields on simple request and changes the url request ↵tiagonbotelho
format
2016-07-12changes the project_title_spec accordinglytiagonbotelho
2016-07-12adds test to check json fields on simple request and changes the url request ↵tiagonbotelho
format
2016-07-12changes the project_title_spec accordinglytiagonbotelho
2016-07-01Remove `pinTo` from `Flash` and make inline flash messages look nicer (!4854)winniehell
2016-06-27Merge branch 'emoji-menu-stick-search' into 'master' Jacob Schatz
Made the search bar on emoji menu sticky ## What does this MR do? When scrolling down the emoji menu, the search bar disappears. For better UX, the search bar no stays at the top when scrolling. ## Screenshots (if relevant) ![emoji-sticky](/uploads/a5b4773547d3d67342ddcfc07c8f1568/emoji-sticky.gif) See merge request !4743
2016-06-23Fix teaspoon tests.Connor Shea
2016-06-20Fixed award emoji testsPhil Hughes
2016-06-20Added text_utility to JS testsPhil Hughes
2016-06-16Merge branch '13525-sane-defaults-for-merge-request-js-class-constructor' ↵Jacob Schatz
into 'master' Avoid a TypeError when initializing MergeRequest JS class with no arg ## What does this MR do? Avoid a TypeError when initializing MergeRequest JS class with no arg. ## Are there points in the code the reviewer needs to double check? No. ## Why was this MR needed? Without this sane default you would get the following error when you tried to instantiate a new MergeRequest object with no argument (i.e. `new MergeRequest();`): TypeError: undefined is not an object (evaluating 'this.opts.action') ## What are the relevant issue numbers? Fixes #13525. ## Does this MR meet the acceptance criteria? - [x] No CHANGELOG since it's a trivial internal change - [x] Tests - [x] Added for this feature/bug - [ ] 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 !4667
2016-06-16Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce into ↵Fatih Acet
category-search-dropdown # Conflicts: # app/assets/javascripts/lib/common_utils.js.coffee
2016-06-15Prevent default disabled buttons and links.Fatih Acet
2016-06-15Avoid a TypeError when initializing MergeRequest JS class with no argRémy Coutable
Without this sane default you would get the following error when you tried to instantiate a new MergeRequest object with no argument (i.e. `new MergeRequest();`): TypeError: undefined is not an object (evaluating 'this.opts.action') Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-06-15Fix teaspoon spec.Timothy Andrew
- We added a `current_user.two_factor_via_otp?` check to the view. When rendering the view via the teaspoon fixture, `current_user` is `nil`.
2016-06-10Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce into ↵Fatih Acet
category-search-dropdown
2016-06-10Fix specs and add new tests.Fatih Acet
2016-06-09Move award_menu_url variable into gon object.Fatih Acet
2016-06-07Added tests for categorised search autocomplete.Fatih Acet
2016-06-06Merge branch 'notes-are-awardables' into 'master' Douwe Maan
Notes are awardables ## What does this MR do? Makes sure we can :thunder_cloud_rain: comments/notes. ## What are the relevant issue numbers? Follows up upon !2901, depends on !3785 Closes #3655 ## Screenshots (if relevant) TODO See merge request !4291
2016-06-06Merge branch 'jquery2' into 'master' Jacob Schatz
Upgraded jQuery to version 2 ## What does this MR do? Upgrades jQuery to 2.2.1. Had to include the task_list JS file directly as it includes jQuery 1 directly https://github.com/github-archive/task_list/blob/master/app/assets/javascripts/task_list.coffee#L8 so when we change jQuery to `jquery2` it was including both jQuery 1 & 2. ## Are there points in the code the reviewer needs to double check? For any JS errors ## What are the relevant issue numbers? Closes #12440 See merge request !4384
2016-06-06Updated MR notes.Fatih Acet
2016-06-06Added tests for award emoji feature.Fatih Acet
2016-06-06Implement authentication (login) using a U2F device.Timothy Andrew
- Move the `authenticate_with_two_factor` method from `ApplicationController` to the `AuthenticatesWithTwoFactor` module, where it should be.
2016-06-06Implement U2F registration.Timothy Andrew
- Move the `TwoFactorAuthsController`'s `new` action to `show`, since the page is not used to create a single "two factor auth" anymore. We can have a single 2FA authenticator app, along with any number of U2F devices, in any combination, so the page will be accessed after the first "two factor auth" is created. - Add the `u2f` javascript library, which provides an API to the browser's U2F implementation. - Add tests for the JS components
2016-06-05Fixed JS errorsPhil Hughes
CHANGELOG item
2016-06-02Move JS graph specs to match assets tree.Connor Shea
2016-06-02Fix teaspoonConnor Shea
2016-05-23Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce into #15643Fatih Acet
# Conflicts: # app/assets/stylesheets/pages/issuable.scss
2016-05-20Dropdown implementationAlfredo Sumaran
2016-05-12Added specs for right sidebar.Fatih Acet
2016-05-08Fix build notification on merge request page change even if the build status ↵Benedikt Huss
didn't change
2016-05-05Feedback from stanhuBenedikt Huss
2016-05-05Merge request widget displays TeamCity build state and code coverage ↵Benedikt Huss
correctly again
2016-04-14Placeholder on milestone formPhil Hughes
Updated JS spec to include gl_form
2016-04-12Updated based on Ruby feedbackPhil Hughes
2016-04-12Tests updatePhil Hughes
2016-04-05Merge branch 'close-issue-bug' into 'master' Jacob Schatz
Fix data check in update issue response See merge request !3548
2016-04-05Update issue_spec testAnnabel Dunstone
2016-04-04Tests updatePhil Hughes