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
2015-06-05Added GitLab restart required help block to session_expire_secondsthemaze75/gitlab-ce-feature-session-expire-seconds-uithemaze75
2015-06-05Add session expiration delay configuration through UI applicationEric Maziade
settings
2015-06-04Merge branch 'rs-issue-1741' into 'master'Dmitriy Zaporozhets
Remove show actions from Admin and Project DeployKeys Example styling after: > ![Screen_Shot_2015-06-03_at_6.04.51_PM](https://gitlab.com/gitlab-org/gitlab-ce/uploads/105801a7e390224066721bba200c4909/Screen_Shot_2015-06-03_at_6.04.51_PM.png) Closes #1741 See merge request !763
2015-06-04Show key fingerprint on DeployKeys#indexRobert Speicher
Also style all key fingerprints consistently across the app.
2015-06-04Remove show actions from Admin and Project DeployKeysRobert Speicher
2015-06-03Merge branch 'rs-2fa-docs' into 'master'Job van der Voort
Add 2FA docs See merge request !757
2015-06-03Merge branch 'fix-group-remove' into 'master'Dmitriy Zaporozhets
Group improvements * remove projects before removing group * execute all hooks/events from project destroy when group removed * log group create/remove * delay remove of namespace directory (to prevent NFS issues) Inspired by !759 See merge request !761
2015-06-03Add CHANGELOG itemDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-06-03Merge branch 'remove_unecessary_rake_task' into 'master'Dmitriy Zaporozhets
Remove gitlab:env:check task. Rake task that checks for git user git settings is a leftover from early days. It is not being used by the web editor(and web editor is also being redone atm) so this rake task just causes confusion. Adresses internal issue https://dev.gitlab.org/gitlab/gitlabhq/issues/2362 See merge request !758
2015-06-03Merge branch 'repo-remove'Dmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> Conflicts: spec/features/projects_spec.rb
2015-06-03Skip repo removing whem remove user or groupDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-06-03Log group creation and removalDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-06-03Add autocrlf back to installation docs, add a check for it.Marin Jankovski
2015-06-03fix typo and add screenshotsJob van der Voort
2015-06-03Merge branch 'repo-remove' into fix-group-removeDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> Conflicts: spec/features/projects_spec.rb
2015-06-03Fix tests and increase delay time before remove repositoryDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-06-03Remove projects before group/user. Remove namespace directory asyncDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-06-03Merge branch 'master' of github.com:gitlabhq/gitlabhqJacob Vosmaer
2015-06-03Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ceJacob Vosmaer
2015-06-03Wrap group removal into serviceDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-06-03Merge branch 'ldap-email-attribute' into 'master'Job van der Voort
LDAP users should not control their LDAP email If they can, they can take over arbitrary GitLab accounts. See merge request !1837
2015-06-03Merge branch 'add-resend-confirmation-email-in-profile' into 'master'Douwe Maan
Add "Resend confirmation e-mail" link in profile settings Adds a convenience link to resend the confirmation e-mail if necessary. Before, user had to logout or open an Incognito Window to do this. Screenshot: ![image](https://gitlab.com/gitlab-org/gitlab-ce/uploads/700e6d98e1c5b58726fbed4e52a09c06/image.png) Fixes https://github.com/gitlabhq/gitlabhq/issues/9274 See merge request !634
2015-06-03LDAP users should not control their LDAP emailJacob Vosmaer
2015-06-03Add tests for project destroy serviceDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-06-03Move repository when project is removedDmitriy Zaporozhets
Ths commit does next: * When we remove project we move repository to path+deleted.git * Then we schedule removal of path+deleted with sidekiq * If repository move failed we abort project removal This should help us with NFS issue when project get removed but repository stayed. The full explanation of problem is below: * rm -rf project.git * rm -rf removes project.git/objects/foo * NFS server renames foo to foo.nfsXXXX because some NFS client (think * Unicorn) still has the file open * rm -rf exits, but project.git/objects/foo.nfsXXX still exists * Unicorn closes the file, the NFS client closes the file (foo), and the * NFS server removes foo.nfsXXX * the directory project.git/objects/ still exists => problem So now we move repository and even if repository removal failed Repository directory is moved so no bugs with project removed but repository directory taken. User still able to create new project with same name. From administrator perspective you can easily find stalled repositories by searching `*+deleted.git` Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-06-03Merge pull request #9349 from lahdekorpi/patch-1Jeroen van Baarsen
Remove "(unreleased)" from v 7.11.0
2015-06-03Remove gitlab:env:check task.Marin Jankovski
2015-06-03Merge branch 'rs-more-js-testing' into 'master'Dmitriy Zaporozhets
More Javascript testing Continuation of !715 See merge request !736
2015-06-03Merge branch 'rs-issue-1022' into 'master'Dmitriy Zaporozhets
Push event: Nest link in strong tag, not vice-versa Closes #1022 See merge request !755
2015-06-03Add "Resend confirmation e-mail" link in profile settingsStan Hu
Fixes https://github.com/gitlabhq/gitlabhq/issues/9274
2015-06-03Remove unused `showAndHide`, `simpleFormat`, and `linkify` functionsRobert Speicher
Also removes redundant `unbind` call
2015-06-03Add JS specs for Array extensionsRobert Speicher
2015-06-03Move jQuery enable/disable extensions to extensions/jqueryRobert Speicher
Removes redundant enableButton/disableButton extensions, and adds specs for the jQuery extensions.
2015-06-03Bump jquery-rails versionRobert Speicher
2015-06-03Add ZenMode javascript specsRobert Speicher
2015-06-03Add 2FA docsRobert Speicher
[ci skip]
2015-06-02Push event: Nest link in strong tag, not vice-versaRobert Speicher
Closes #1022
2015-06-02Merge branch 'ignore-references' into 'master'Dmitriy Zaporozhets
Don't notify users mentioned in code blocks or blockquotes. cc @rspeicher See merge request !753
2015-06-02Merge branch 'rs-more-nofollow' into 'master'Douwe Maan
Render Group and Project descriptions with our Markdown pipeline Continuation of !727, this ensures external links in these fields also get `rel="nofollow"` added. Bonus: Emoji now works in them! :sparkles: See merge request !735
2015-06-02Further limit the limited whitelist for project/group descriptionsRobert Speicher
2015-06-02Remove "(unreleased)" from v 7.11.0Toni Lähdekorpi
2015-06-02Rename ReferenceFilterSpecHelper to FilterSpecHelperRobert Speicher
And make it more generalized for all filter specs.
2015-06-02Add feature specs for Project and Group description renderingRobert Speicher
2015-06-02Add a `pipeline` context option for SanitizationFilterRobert Speicher
When this option is `:description`, we use a more restrictive whitelist. This is used for Project and Group description fields.
2015-06-02Remove now-unused `escaped_autolink` helper and rails_autolink gemRobert Speicher
2015-06-02Render Group and Project descriptions with our Markdown pipelineRobert Speicher
2015-06-02Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ceDmitriy Zaporozhets
2015-06-02Merge branch 'ci_yml_file' into 'master'Dmitriy Zaporozhets
GitLab CI service sends gitlab-ci.yml file See merge request !689
2015-06-02Merge pull request #8730 from drunkard/masterMarin Jankovski
Specify shell while run me as git user
2015-06-02GitLab CI service sends gitlab-ci.yml fileValery Sizov