summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | Add API support for looking up a user by usernameStan Hu2015-12-244-5/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Needed to support Huboard
* | | | | | | Merge branch 'feature/force-tfa' into 'master' Dmitriy Zaporozhets2015-12-2516-27/+220
|\ \ \ \ \ \ \ | |_|_|/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Require two factor authentication Allow Admins to force 2FA on their users, as discussed here: gitlab-org/gitlab-ce#3783 See merge request !2155
| * | | | | | Fixed codestyle and added 2FA documentationfeature/force-tfaGabriel Mazetto2015-12-244-3/+44
| | | | | | |
| * | | | | | Updated CHANGELOGGabriel Mazetto2015-12-241-0/+1
| | | | | | |
| * | | | | | Add to application_settings forced TFA optionsGabriel Mazetto2015-12-242-0/+14
| | | | | | |
| * | | | | | specs for forced two-factor authentication and grace periodGabriel Mazetto2015-12-243-8/+63
| | | | | | | | | | | | | | | | | | | | | | | | | | | | simplified code and fixed stuffs
| * | | | | | Grace period support for TFAGabriel Mazetto2015-12-247-3/+53
| | | | | | |
| * | | | | | WIP require two factor authenticationGabriel Mazetto2015-12-246-26/+58
| | | | | | |
* | | | | | | Merge branch 'ref-filter-html' into 'master' Robert Speicher2015-12-245-17/+20
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | | | | | | | | | | | | | | | Escape all the things. See merge request !2209
| * | | | | | Escape all the things.Douwe Maan2015-12-245-17/+20
| | | | | | |
* | | | | | | Merge branch 'fix-add-key-submit' into 'master' Douwe Maan2015-12-242-1/+4
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Enable "Add key" button when user fills in a proper key Closes #4295 See merge request !2208
| * | | | | | Enable "Add key" button when user fills in a proper keyStan Hu2015-12-242-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Closes #4295
* | | | | | | Update CHANGELOGRobert Speicher2015-12-241-1/+3
|/ / / / / / | | | | | | | | | | | | | | | | | | [ci skip]
* | | | | | Merge branch 'master' of github.com:gitlabhq/gitlabhqRobert Speicher2015-12-241-8/+8
|\ \ \ \ \ \
| * \ \ \ \ \ Merge pull request #9915 from huacnlee/avoid-ability-methods-allocationsDmitriy Zaporozhets2015-12-241-8/+8
| |\ \ \ \ \ \ | | |/ / / / / | |/| | | | | Avoid allocations in Ability class.
| | * | | | | Avoid allocations in Ability class.Jason Lee2015-12-161-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It won't change anything after they are first invoke, so add method cache to avoid allocations and avoid GC. Benchmarks: ``` Calculating ------------------------------------- project_guest_rules without method cache 79.352k i/100ms project_guest_rules with method cache 93.634k i/100ms ------------------------------------------------- project_guest_rules without method cache 2.865M (±32.5%) i/s - 11.982M project_guest_rules with method cache 4.419M (± 7.4%) i/s - 22.004M Comparison: project_guest_rules with method cache: 4418908.0 i/s project_guest_rules without method cache: 2864514.0 i/s - 1.54x slower Calculating ------------------------------------- project_report_rules without method cache 53.126k i/100ms project_report_rules with method cache 97.473k i/100ms ------------------------------------------------- project_report_rules without method cache 1.093M (±36.5%) i/s - 4.675M project_report_rules with method cache 4.420M (± 7.2%) i/s - 22.029M Comparison: project_report_rules with method cache: 4420054.3 i/s project_report_rules without method cache: 1092509.6 i/s - 4.05x slower ``` https://gist.github.com/huacnlee/b04788ae6df42fe769e4
* | | | | | | Merge branch 'fix-changelog' into 'master'Robert Speicher2015-12-241-5/+4
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Move changelog items to their correct place. Fixes #4236 See merge request !2201
| * | | | | | | Move changelog items to their correct place.Douwe Maan2015-12-241-3/+3
| | | | | | | |
* | | | | | | | Merge branch 'ldap-special-chars-fix' into 'master' Douwe Maan2015-12-244-4/+20
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix identity and user retrieval when special characters are used Fixes #4023 I also added tests to make sure the user with special characters in his name is returned correctly. @rspeicher this probably should be added to 8.3 as a patch. See merge request !2176
| * | | | | | | | No mb_chars needed anymoreldap-special-chars-fixDouwe Maan2015-12-241-2/+2
| | | | | | | | |
| * | | | | | | | Fix identity and user retrieval when special characters are usedPatricio Cano2015-12-224-3/+19
| | | | | | | | |
* | | | | | | | | Merge branch 'emoji_picker_frequently_used' into 'master' Valery Sizov2015-12-243-3/+31
|\ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Emoji picker: add "frequently used" category depend on !2172 ![Screen_Shot_2015-12-24_at_16.39.04](/uploads/7117173c6f519282054bcb1b7ba248f4/Screen_Shot_2015-12-24_at_16.39.04.png) See merge request !2180
| * | | | | | | | added default for frequently used emojisValery Sizov2015-12-242-10/+11
| | | | | | | | |
| * | | | | | | | fix of frequently used emojisValery Sizov2015-12-241-3/+3
| | | | | | | | |
| * | | | | | | | Merge branch 'emoji-picker-search' into emoji_picker_frequently_usedValery Sizov2015-12-2454-341/+993
| |\ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ Merge branch 'emoji-picker-search'into emoji_picker_frequently_usedemoji_picker_frequently_usedValery Sizov2015-12-24329-1939/+17218
| |\ \ \ \ \ \ \ \ \
| * | | | | | | | | | add frequently used category to emoji pickerValery Sizov2015-12-222-0/+29
| | | | | | | | | | |
| * | | | | | | | | | TYPO in the commentValery Sizov2015-12-221-1/+1
| | | | | | | | | | |
| * | | | | | | | | | customize niceScrollValery Sizov2015-12-221-1/+1
| | | | | | | | | | |
| * | | | | | | | | | add some spinachValery Sizov2015-12-222-0/+12
| | | | | | | | | | |
| * | | | | | | | | | fix specsValery Sizov2015-12-223-10/+6
| | | | | | | | | | |
| * | | | | | | | | | emoji picker: minor fixesValery Sizov2015-12-221-8/+0
| | | | | | | | | | |
| * | | | | | | | | | emoji css refactoringValery Sizov2015-12-221-1262/+1267
| | | | | | | | | | |
| * | | | | | | | | | base implementation of emoji picker [ci skip]Valery Sizov2015-12-2210-71/+1412
| | | | | | | | | | |
* | | | | | | | | | | Merge branch 'fix-explore-ui' into 'master' Dmitriy Zaporozhets2015-12-243-3/+3
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix explore projects page UI # Before ![Screenshot_2015-12-24_14.13.03](/uploads/fdae7648acc8b8076709e4bfc867a5f8/Screenshot_2015-12-24_14.13.03.png) # After ![Screenshot_2015-12-24_14.11.29](/uploads/b1ecd3bebfadab9d2ceabaae27046271/Screenshot_2015-12-24_14.11.29.png) cc @jschatz1 @skyruler Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> See merge request !2202
| * | | | | | | | | | | Fix explore projects page UIfix-explore-uiDmitriy Zaporozhets2015-12-243-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | | | | | | | | | | | Merge branch 'fix-master' into 'master' Douwe Maan2015-12-241-1/+1
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix NewBranchForm spec cc @vsizov See merge request !2204
| * | | | | | | | | | | | Fix NewBranchForm specDouwe Maan2015-12-241-1/+1
| | | | | | | | | | | | |
* | | | | | | | | | | | | Merge branch 'new-project-header-redesign' into 'master' Dmitriy Zaporozhets2015-12-2412-26/+149
|\ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Dropdowns for clone. Star and Fork with new count areas. Star and Unstarred Works now Fixes #2876 and #3482 Used existing styles. <br/> Did not attempt to make pixel perfect as styles already exist. <br/> ![Screen_Shot_2015-12-18_at_5.24.56_PM](/uploads/a79ba1e0be0232f2aeef8a43f3253479/Screen_Shot_2015-12-18_at_5.24.56_PM.png) See merge request !2156
| * | | | | | | | | | | | fixes css spacing issuesnew-project-header-redesignJacob Schatz2015-12-231-27/+27
| | | | | | | | | | | | |
| * | | | | | | | | | | | Moves star code to a classJacob Schatz2015-12-234-37/+27
| | | | | | | | | | | | |
| * | | | | | | | | | | | fixes failing test by updating project clone instructionsJacob Schatz2015-12-234-10/+14
| | | | | | | | | | | | |
| * | | | | | | | | | | | Merge branch 'master' into new-project-header-redesignJacob Schatz2015-12-2321-44/+93
| |\ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | refactoring javascript to put starring functionality in a functionJacob Schatz2015-12-231-19/+24
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | spacing changed from 4 to 2 in ` _clone_panel.html.haml`.Jacob Schatz2015-12-231-21/+21
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | fixes rebase issueJacob Schatz2015-12-230-0/+0
| |\ \ \ \ \ \ \ \ \ \ \ \ \
| | * | | | | | | | | | | | | dropdown chooses right defaultJacob Schatz2015-12-181-4/+5
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | adds dropdown for cloningJacob Schatz2015-12-183-15/+49
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | adds starring and unstarring text to star button, also adds partial new stylesJacob Schatz2015-12-183-4/+22
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | arrows for buttonsJacob Schatz2015-12-184-2/+72
| | | | | | | | | | | | | | |