summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Require the ruby racer only in production since installing it on dev ↵easy-dev-installSytse Sijbrandij2014-12-151-1/+1
| | | | machines can cause a lot of problems. Hat tip to Jeroen van Baarsen
* Update CHANGELOG with snippet validation changeDmitriy Zaporozhets2014-12-121-1/+1
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Merge branch 'sanitize-snippet-file-name' into 'master'Dmitriy Zaporozhets2014-12-124-6/+16
|\ | | | | | | | | | | | | | | Validate and sanitize snippet file name Fixes #1816 See merge request !1322
| * Fix snippet factoryDmitriy Zaporozhets2014-12-121-2/+6
| | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
| * Sanitize snippet file name in raw headersDmitriy Zaporozhets2014-12-123-2/+6
| | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
| * Add strict validation to snippet file namesDmitriy Zaporozhets2014-12-121-2/+4
| | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | Merge branch 'fix_shell_commands_in_shell_install' into 'master'Jacob Vosmaer2014-12-121-4/+19
|\ \ | |/ |/| | | | | | | | | | | Fix shell commands in shell install Fixes #1610 See merge request !1320
| * Don't forget to splat.Marin Jankovski2014-12-121-4/+4
| |
| * Use system where only return result is needed.Marin Jankovski2014-12-121-8/+7
| |
| * Use shell invocation according to the shell commands guidelines.Marin Jankovski2014-12-111-4/+20
| |
* | Merge branch 'dropdown_icon_not_clickable' into 'master'Dmitriy Zaporozhets2014-12-111-0/+1
|\ \ | | | | | | | | | | | | | | | | | | | | | Dropdown icon not clickable Fixes #1642 by using `pointer-events` property supported by [modern browsers](http://caniuse.com/#search=pointer-events) See merge request !1319
| * | Markdown dropzone image icon should not be clickable.Marin Jankovski2014-12-101-0/+1
| |/
* | Merge branch 'show_files_with_diff_name' into 'master'Dmitriy Zaporozhets2014-12-112-1/+2
|\ \ | | | | | | | | | | | | | | | | | | | | | Show files named diff Fixes #1749 See merge request !1318
| * | Do not check for format on blob diff path.Marin Jankovski2014-12-101-1/+1
| | |
| * | Add a failing route spec for file named diff.Marin Jankovski2014-12-101-0/+1
| |/
* | Merge branch 'contributing-md-file-read' into 'master'Sytse Sijbrandij2014-12-111-0/+1
|\ \ | | | | | | | | | | | | | | | | | | | | | Add an extra reference to the 'shell commands' guide The 'shell commands' guide now also has tips on opening/reading files and handling paths. See merge request !1321
| * | The 'shell commands' guide also covers files/pathsJacob Vosmaer2014-12-111-0/+1
|/ /
* | Update CHANGELOGDmitriy Zaporozhets2014-12-111-1/+1
| | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ceDmitriy Zaporozhets2014-12-111-1/+1
|\ \
| * \ Merge branch 'master' into 'master'Drew Blessing2014-12-081-1/+1
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updated doc/integration/twitter.md, fixed incorrect callback URL Fixed a typo in the Integration instructions for Twitter OAuth See merge request !257
| | * | Example callback URL was incorrectScott Stamp2014-12-081-1/+1
| |/ / | | | | | | | | | | | | (referencing /users/auth/github/callback, not /users/auth/twitter/callback)
* | | Merge branch 'master' of github.com:gitlabhq/gitlabhqDmitriy Zaporozhets2014-12-1125-161/+316
|\ \ \ | |_|/ |/| |
| * | Merge pull request #8052 from mr-vinn/markdown-previewDmitriy Zaporozhets2014-12-1125-161/+316
| |\ \ | | |/ | |/| Enable Markdown preview for issues, merge requests, milestones, and notes
| | * Merge branch 'upstream-master' into markdown-previewVinnie Okada2014-12-07417-2204/+6299
| | |\ | | | | | | | | | | | | | | | | Conflicts: spec/routing/project_routing_spec.rb
| | * | Fix test assertionsVinnie Okada2014-10-214-15/+15
| | | | | | | | | | | | | | | | | | | | Make sure we're asserting the correct thing when testing visible and invisible DOM elements.
| | * | Fix more Markdown preview testsVinnie Okada2014-10-182-4/+5
| | | |
| | * | Fix houndci warningsVinnie Okada2014-10-184-10/+10
| | | |
| | * | Fix long line in viewVinnie Okada2014-10-181-1/+2
| | | |
| | * | Add new Markdown preview testVinnie Okada2014-10-181-0/+7
| | | | | | | | | | | | | | | | | | | | Add a test to make sure that Markdown previews are available when editing an existing issue.
| | * | Fix Markdown preview testsVinnie Okada2014-10-187-36/+45
| | | | | | | | | | | | | | | | | | | | Update Spinach tests for Markdown previews for the new-ish tab UI that replaced the old preview/edit toggle button.
| | * | Refactor Markdown preview testsVinnie Okada2014-10-187-39/+57
| | | | | | | | | | | | | | | | | | | | | | | | Create a new shared module for common issue/merge request behavior, use `expect` syntax instead of `should`, and avoid `visible: false` in the `have_css` matcher.
| | * | Use GET instead of POST for Markdown previewsVinnie Okada2014-10-163-4/+4
| | | |
| | * | Add Markdown preview to more formsVinnie Okada2014-10-1521-141/+260
| | | | | | | | | | | | | | | | | | | | Enable Markdown previews when creating and editing issues, merge requests, and milestones, and when editing notes.
* | | | Merge branch 'doc/file_read' into 'master'Sytse Sijbrandij2014-12-091-0/+63
|\ \ \ \ | |/ / / |/| | | | | | | | | | | | | | | | | | | | | | | Add security tips about file and paths These are some extra guidelines to guard against code execution and path traversal. See merge request !1317
| * | | Add security tips about file and pathsJacob Vosmaer2014-12-091-0/+63
|/ / /
* | | Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ceDmitriy Zaporozhets2014-12-081-1/+1
|\ \ \
| * \ \ Merge branch 'tracker_guidelines' into 'master'Sytse Sijbrandij2014-12-081-1/+1
| |\ \ \ | | |_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Drop vagrant from issue tracker guidelines Is this the preferred method of reproducing an issue? If yes, disregard this MR. \cc @sytses @marin See merge request !255
| | * | Drop vagrant preference in issue tracker guidelines.Achilleas Pipinellis2014-12-081-1/+1
| |/ /
* | | Merge branch 'master' of github.com:gitlabhq/gitlabhqDmitriy Zaporozhets2014-12-081-0/+0
|\ \ \
| * \ \ Merge pull request #8436 from Razer6/move_doc_to_folderJacob Vosmaer2014-12-081-0/+0
| |\ \ \ | | |/ / | |/| | Move sidekiq debug docs to development folder
| | * | Move sidekiq debug docs to development folderRobert Schilling2014-12-071-0/+0
| | | |
* | | | Merge branch 'speed_up_migration' into 'master'Dmitriy Zaporozhets2014-12-081-9/+15
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Speed up omniauth AddIdentityTable migration https://dev.gitlab.org/gitlab/gitlabhq/issues/1810 See merge request !1315
| * | | | speed up migration to identitiesValery Sizov2014-12-081-9/+15
| |/ / /
* | | | Merge branch 'unicorn-workers' into 'master'Job van der Voort2014-12-081-23/+22
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | Unicorn workers See merge request !1316
| * | | | Consolidate unicorn worker advise.Sytse Sijbrandij2014-12-081-23/+22
|/ / / /
* | | | Merge branch 'unicorn-advice' into 'master'Sytse Sijbrandij2014-12-082-8/+18
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | Unicorn advice See merge request !1314
| * | | | memory constrained unicorn workersJob van der Voort2014-12-082-5/+5
| | | | |
| * | | | advise about unicorn workersJob van der Voort2014-12-082-8/+18
| |/ / /
* | | | Merge branch 'sidekiq_memory_killer_grace_time' into 'master'Dmitriy Zaporozhets2014-12-082-25/+30
|\ \ \ \ | |/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add 'grace time' behavior to Sidekiq MemoryKiller The previous iteration of the memory killer did not give 'large' jobs much of a chance to finish. This caused them to come back after each restart, leading to another memory-induced shutdown. By adding some 'grace time' between the moment we detect a memory peak and the moment we start shutting down, we hope to give Sidekiq a chance to get whatever causes its memory to grow 'out of its system'. See merge request !1313
| * | | Use the new SIDEKIQ_MEMORY_KILLER_MAX_RSS variableJacob Vosmaer2014-12-081-1/+1
| | | |