summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'reference-access-control' into 'master'Dmitriy Zaporozhets2015-04-1322-257/+277
|\ | | | | | | | | | | | | | | Only allow users to reference groups, projects, issues, MRs, commits they have access to. Addresses https://dev.gitlab.org/gitlab/gitlabhq/issues/2183. See merge request !1742
| * Update tests.Douwe Maan2015-04-032-48/+54
| |
| * Refactor ClosingIssueExtractor.Douwe Maan2015-04-033-15/+14
| |
| * Refactor ReferenceExtractor.Douwe Maan2015-04-031-29/+28
| |
| * Don't require user to every gfm call.Douwe Maan2015-04-032-22/+22
| |
| * Allow byebug to be used in test.Douwe Maan2015-04-031-1/+2
| |
| * Fix errors.Douwe Maan2015-04-0210-120/+114
| |
| * Add changelog item.Douwe Maan2015-04-021-0/+1
| |
| * Only allow users to cross-reference and close issues they have access to.Douwe Maan2015-04-025-12/+12
| |
| * Only allow user to see participants from groups they have access to.Douwe Maan2015-04-025-12/+12
| |
| * Don't allow full access to guests in ReferenceExtractorDouwe Maan2015-04-021-3/+0
| |
| * Add Commit#author and #committer.Douwe Maan2015-04-023-4/+13
| |
| * Slightly refactor getting note notification recipients.Douwe Maan2015-04-022-15/+24
| |
| * Refactor Mentionable mentioned users to use ReferenceExtractor.Douwe Maan2015-04-022-19/+16
| |
| * Only allow user to reference objects they have access to.Douwe Maan2015-04-023-22/+32
| |
| * Slightly refactor ReferenceExtractor.Douwe Maan2015-04-023-43/+41
| |
* | Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ceDmitriy Zaporozhets2015-04-135-2/+12
|\ \
| * \ Merge branch 'skip-email-reconfirmation' into 'master'Dmitriy Zaporozhets2015-04-133-1/+3
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Skip email confirmation when set by admin or via LDAP. Addresses private issue https://dev.gitlab.org/gitlab/gitlabhq/issues/2203. See merge request !494
| | * | Skip email confirmation when set by admin or via LDAP.skip-email-reconfirmationDouwe Maan2015-04-063-1/+3
| | | |
| * | | Merge branch 'shell-version-warning' into 'master'Dmitriy Zaporozhets2015-04-133-1/+9
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Warn when gitlab-shell version doesn't match requirement. Addresses private issue https://dev.gitlab.org/gitlab/gitlabhq/issues/1791. See merge request !495
| | * | | Warn when gitlab-shell version doesn't match requirement.shell-version-warningDouwe Maan2015-04-063-1/+9
| | |/ /
* | | | Bump gitlab-shell versionDmitriy Zaporozhets2015-04-131-1/+1
|/ / / | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | | Merge branch 'master' of github.com:gitlabhq/gitlabhqDmitriy Zaporozhets2015-04-131-2/+2
|\ \ \
| * \ \ Merge pull request #9104 from jdsn/fix-issue9098-clean_pathDmitriy Zaporozhets2015-04-131-2/+2
| |\ \ \ | | | | | | | | | | Fix issue9098 clean path
| | * | | clean_path should drop all leading dashes, not just oneJ. Daniel Schmidt2015-04-081-1/+1
| | | | |
| | * | | clean_path should drop all trailing dots, not just oneJ. Daniel Schmidt2015-04-081-1/+1
| | | | |
| | * | | clean_path should not drop the last characterJ. Daniel Schmidt2015-04-081-1/+1
| | | | | | | | | | | | | | | | | | | | Fixes https://github.com/gitlabhq/gitlabhq/issues/9098
* | | | | Fix performance issue when browse big diffsDmitriy Zaporozhets2015-04-131-1/+1
|/ / / / | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | | | Merge branch 'public-deploy-keys' into 'master'Dmitriy Zaporozhets2015-04-1323-46/+386
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Allow admin to create public deploy keys that are accessible to any project. Addresses private issue https://dev.gitlab.org/gitlab/gitlabhq/issues/1774. Project settings: ![Screen_Shot_2015-03-27_at_14.46.48](https://gitlab.com/gitlab-org/gitlab-ce/uploads/01799ff912671ba6db3f828ea1aca1a6/Screen_Shot_2015-03-27_at_14.46.48.png) The "Public deploy keys" section is only shown when there are any. If there are public deploy keys but no project deploy keys, only public deploy keys are shown. If there are no public deploy keys and no project deploy keys, the current "Deploy keys from projects you have access to will be displayed here" placeholder is shown. The list of projects below the public key has been changed to only show projects the user has access to. "Public deploy key" seems to be repeated on the left, but the first is just the title. The label is always visible for public deploy keys. Admin index: ![Screen_Shot_2015-03-27_at_14.47.06](https://gitlab.com/gitlab-org/gitlab-ce/uploads/ea889d274cfd3f0694d47d602f4f3e94/Screen_Shot_2015-03-27_at_14.47.06.png) Admin detail page: ![Screen_Shot_2015-03-27_at_14.47.16](https://gitlab.com/gitlab-org/gitlab-ce/uploads/8c8475e05bf6b497da3b9f1bc102329f/Screen_Shot_2015-03-27_at_14.47.16.png) Projects using the deploy key are listed on the left and can be disabled easily. See merge request !469
| * | | | Add admin deploy keys tests.public-deploy-keysDouwe Maan2015-04-033-0/+81
| | | | |
| * | | | Add project deploy keys tests.Douwe Maan2015-04-032-3/+44
| | | | |
| * | | | Clean up code.Douwe Maan2015-04-037-27/+48
| | | | |
| * | | | Fix failing specs.Douwe Maan2015-04-031-2/+1
| | | | |
| * | | | Allow admin to create public deploy keys that are accessible to any project.Douwe Maan2015-04-0316-36/+233
| | | | |
* | | | | Merge branch 'fix-group-project-list-cache' into 'master'Dmitriy Zaporozhets2015-04-132-1/+3
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bust group page project list cache when namespace name or path changes. Fixes gitlab-com/support-forum#144. See merge request !509
| * | | | | Bust group page project list cache when namespace name or path changes.fix-group-project-list-cacheDouwe Maan2015-04-102-2/+3
| | | | | |
* | | | | | Merge pull request #9117 from bbodenmiller/patch-12Dmitriy Zaporozhets2015-04-121-3/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | document support for inline HTML
| * | | | | | document support for inline HTMLBen Bodenmiller2015-04-111-3/+1
| | | | | | |
* | | | | | | Merge pull request #9120 from bbodenmiller/patch-4Robert Schilling2015-04-121-1/+1
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | fix link to details on how to run the tests
| * | | | | | | fix link to details on how to run the testsBen Bodenmiller2015-04-121-1/+1
|/ / / / / / / | | | | | | | | | | | | | | [ci skip]
* | | | | | | Merge branch 'arbitrary-local-repo-import' into 'master'Dmitriy Zaporozhets2015-04-127-6/+7
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Prevent arbitary local repos from being imported. Fixes gitlab/gitlab-ee#263. See merge request !1763
| * | | | | | | Don't use URI.regexp to validate since it doens't have start/end anchors.Douwe Maan2015-04-115-5/+5
| | | | | | | |
| * | | | | | | Fix project import URL regex to prevent arbitary local repos from being ↵Douwe Maan2015-04-112-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | imported.
* | | | | | | | Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ceDmitriy Zaporozhets2015-04-123-2/+3
|\ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ Merge branch 'fix-typo-starred-projects' into 'master'Robert Schilling2015-04-121-1/+1
| |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix typo See merge request !511
| | * | | | | | | | Fix typoStan Hu2015-04-111-1/+1
| |/ / / / / / / /
| * | | | | | | | Merge branch 'bump-gitlab-shell' into 'master'Douwe Maan2015-04-112-1/+2
| |\ \ \ \ \ \ \ \ | | |_|/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bump gitlab-shell Fix git over ssh errors 'fatal: protocol error: bad line length character' Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> cc @DouweM @patricio See merge request !506
| | * | | | | | | Bump gitlab-shellDmitriy Zaporozhets2015-04-092-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | | | | | | | | Merge branch 'regex-start-of-string' into 'master'Dmitriy Zaporozhets2015-04-1211-16/+15
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix persistent XSS vulnerability around profile website URLs. Fixes gitlab/gitlab-ee#268 See merge request !1761
| * | | | | | | | | Fix a whoopsie daisy in the changelog.Douwe Maan2015-04-111-1/+0
| | | | | | | | | |