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
path: root/config
AgeCommit message (Collapse)Author
2015-03-31Limit number of concurrent archive_repo jobs to 2.Douwe Maan
2015-03-30Missing dot.Achilleas Pipinellis
2015-03-30Update documentation on issue closing pattern.Achilleas Pipinellis
2015-03-29Merge branch 'master' of github.com:gitlabhq/gitlabhqDmitriy Zaporozhets
2015-03-29Merge branch 'remove_external_trackers_from_yml' into 'master'Dmitriy Zaporozhets
We've moved external trackers to service, remove from gitlab.yml. Fixes #1937 See merge request !1743
2015-03-29update acts-as-taggable-onNihad Abbasov
2015-03-27Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ceDmitriy Zaporozhets
2015-03-27We've moved external trackers to service, remove from gitlab.yml.Marin Jankovski
2015-03-27Add autocomplete controllerDmitriy Zaporozhets
2015-03-27Add a note about not adding new setting options to gitlab.yml.Marin Jankovski
2015-03-24Reduce Rack Attack false positives by clearing out auth failure count uponStan Hu
successful Git over HTTP authentication. Add logging when a ban goes into effect for debugging. Issue #1171
2015-03-22Restyle oauth accounts at profile page and add ability to unlink accountDmitriy Zaporozhets
2015-03-21Fix typo.Marin Jankovski
2015-03-21Change the name of the key used for bitbucket importer.Marin Jankovski
2015-03-20Fix commits routingDmitriy Zaporozhets
2015-03-20Fix commits routing for branches with slashDmitriy Zaporozhets
2015-03-20Revert "Increase timeout for Git-over-HTTP requests."Dmitriy Zaporozhets
This reverts commit 516bcabbf42d60db2ac989dce4c7187b2a1e5de9. Conflicts: Gemfile
2015-03-19Remove signout flash message because it also makes no sense.Dmitriy Zaporozhets
You get redirected after signuout to gitlab.com and see this message on login page which makes no sense.
2015-03-19Remove success signin message by deviseDmitriy Zaporozhets
I find it really annoying every time I login into GitLab it shows me that I successfully signed in. But this makes no sense to me. I already see dashboard and dont see login screen. Its obvious I signed in successfully. Instead it just show annyoing message every time taking part of space on my screen.
2015-03-18Extend the commit calendar to show the actual commits for a dateHannes Rosenögger
2015-03-17Merge branch 'issue_subscription' into 'master'Dmitriy Zaporozhets
Subscription to issue/mr Fixes #1911 and #1909 ![joxi_screenshot_1426601822159](https://dev.gitlab.org/gitlab/gitlabhq/uploads/53021bc5783271322ab2dfba7598eaa3/joxi_screenshot_1426601822159.png) ![joxi_screenshot_1426601836423](https://dev.gitlab.org/gitlab/gitlabhq/uploads/244ff360fbd6f30980f8dad699400814/joxi_screenshot_1426601836423.png) See merge request !1702
2015-03-16testsValery Sizov
2015-03-16Merge branch 'fix-restricted-visibility' into 'master'Dmitriy Zaporozhets
Restricted visibility levels - bug fix and new feature This allows admin users to override restricted visibility settings when creating and updating projects and snippets, and moves the restricted visibility configuration from gitlab.yml to the web UI. See #1903. ## Move configuration location I added a new section to the application settings page for restricted visibility levels. Each level has a checkbox, styled with Bootstrap to look like a toggle button. A checked box means that the level is restricted. I added a glowing text shadow and changed the background color for checked buttons because the default styles made it hard to distinguish between checked and unchecked. This image shows the new section with the "Public" box checked: ![restricted_visibility_settings](https://dev.gitlab.org/Okada/gitlabhq/uploads/629562e4313f89b795e81c3bb0f95893/restricted_visibility_settings.png) ## Allow admins to override To allow admin users to override the restricted visibility levels, I had to remove the `visibility_level` validation from the `Project` class. The model doesn't know about the `current_user`, which should determine whether the restrictions can be overridden. We could use the creator in the validation, but that wouldn't work correctly for projects where a non-admin user is the creator and an admin tries to change the project to a restricted visibility level. The `Project::UpdateService` and `Project::CreateService` classes already had code to determine whether the current user is allowed to use a given visibility level; now all visibility level validation is done in those classes. Currently, when a non-admin tries to create or update a project using a restricted level, these classes silently set the visibility level to the global default (create) or the project's existing value (update). I changed this behavior to be more like an Active Model validation, where using a restricted level causes the entire request to be rejected. Project and personal snippets didn't have service classes, and restricted visibility levels weren't being enforced in the model or the controllers. The UI disabled radio buttons for restricted levels, but that wouldn't be difficult to circumvent. I created the `CreateSnippetService` and `UpdateSnippetService` classes to do the same restricted visibility check that the project classes do. And since I was dealing with snippet visibility levels, I updated the API endpoints for project snippets to allow users to set and update the visibility level. ## TODO * [x] Add more tests for restricted visibility functionality cc @sytse @dzaporozhets See merge request !1655
2015-03-15SubscriptionValery Sizov
2015-03-15Move group leave action from dashboard/groups to groups/group_members.Douwe Maan
2015-03-15Move group members index from `/members` to `/group_members`.Douwe Maan
2015-03-15Move project members index from `/team` to `/project_members`Douwe Maan
2015-03-15Use `project_member` instead of `team_member`.Douwe Maan
2015-03-14Merge branch 'master' into fix-restricted-visibilityVinnie Okada
Conflicts: db/schema.rb
2015-03-14Change default number of unicorn workers to three.Marin Jankovski
2015-03-12Merge branch 'markdown-smb-link' into 'master'Dmitriy Zaporozhets
Allow smb:// links in Markdown text. As requested by Sam McLeod at https://gitlab.com/gitlab-org/gitlab-ce/issues/1184 See merge request !1669
2015-03-11Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ceDmitriy Zaporozhets
2015-03-11Make email display name configurableVyacheslav Slinko
2015-03-11Remove projects page from dashboardDmitriy Zaporozhets
2015-03-10Allow smb:// links in Markdown text.Douwe Maan
2015-03-10Add starred projects page to dashboardDmitriy Zaporozhets
2015-03-09Merge branch 'dashboard-groups' into 'master'Dmitriy Zaporozhets
Move profile groups page to dashboard For #2069 See merge request !1654
2015-03-09Merge branch 'smtp_example_update' into 'master'Marin Jankovski
Add link to smtp documentation. Closes #2070 See merge request !1627
2015-03-09Move profile groups page to dashboardDmitriy Zaporozhets
2015-03-09Add GitLab UI development kitDmitriy Zaporozhets
2015-03-07Move restricted visibility settings to the UIVinnie Okada
Add checkboxes to the application settings page for restricted visibility levels, and remove those settings from gitlab.yml.
2015-03-05Merge branch 'timeout' into 'master'Dmitriy Zaporozhets
Increase timeout for Git-over-HTTP requests. Fixes #2081 and https://gitlab.com/gitlab-org/gitlab-ce/issues/232. Normal web requests are bound by the `Rack::Timeout` timeout of 60 seconds, while Grack Git-over-HTTP requests are only bound by Unicorn's timeout which is now set to 1 hour, which should be plenty. The omnibus package should be updated to no longer use `unicorn['worker_timeout']` for the Unicorn timeout, but to set the `Slowpoke.timeout`. See merge request !1619
2015-03-05Increase timeout for Git-over-HTTP requests.Douwe Maan
2015-03-04Add link to smtp documentation.Marin Jankovski
2015-03-03Add dashboard milestones.Douwe Maan
2015-03-03Merge pull request #8349 from divineforest/cleanup-assets-compressDmitriy Zaporozhets
Remove useless `assets.compress` option, Rails 4 uses only `assets.js_co...
2015-02-28Add comment about note attachment redirect.Douwe Maan
2015-02-27Redirect old note attachment path to new uploads path.Douwe Maan
2015-02-26Merge branch 'extend_markdown_upload' into 'master'Dmitriy Zaporozhets
Generalizes image upload in drag and drop in markdown to all files From https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/265 by Hannes Rosenögger. - [x] Rebase on master when !1553 is merged in See merge request !1530
2015-02-24Re-enable rescuing from Bitbucket OAuth errors.Douwe Maan