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-10-14Merge remote-tracking branch 'origin/cernvcs_hide_passwrd'Valery Sizov
2015-10-14Merge remote-tracking branch 'origin/inified_404_error'Valery Sizov
2015-10-14Merge branch 'feature/api_hide_service_password' of gitlab.com:cernvcs/gitlab-ceValery Sizov
2015-10-13Merge branch 'stanhu/gitlab-ce-wiki-add-new-page-in-pages-tab'Dmitriy Zaporozhets
2015-10-13Merge branch 'add-wip-to-mr-hook-attrs' into 'master' Stan Hu
merge_request: add work_in_progress to MR hooks See merge request !1443
2015-10-13Only render 404 page from /publicValery Sizov
2015-10-13Merge branch 'redesign-files-page'Dmitriy Zaporozhets
2015-10-13Merge branch 'group_names_widget' into 'master' Dmitriy Zaporozhets
Project names are not fully shown if group name is too big, even on group page view https://dev.gitlab.org/gitlab/gitlabhq/issues/2548 ![joxi_screenshot_1444408109183](https://gitlab.com/gitlab-org/gitlab-ce/uploads/c21ae245254b82db0212298b6f997067/joxi_screenshot_1444408109183.png) See merge request !1561
2015-10-13Apply new design to files pageDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-10-13Merge branch 'commit_status' into 'master' Kamil Trzciński
Implement Commit Status API This is preliminary implementation of Commit Status API, pretty much compatible with GitHub. 1. The Commit Statuses are stored in separate table: ci_commit_status. 2. The POST inserts a new row. 3. To POST execute GitLab API `post :id/repository/commits/:sha/status`. This accepts dual authorization: - Using authorized user - Using ci-token to allow easy posting from CI Services 4. This adds predefined variable to GitLab CI build environment: CI_BUILD_STATUS_URL, allowing to easy post status from within build (ex. with code coverage or other metrics). 5. This adds statuses to commit's builds view. 6. The commit's status is calculated taking into account status of all builds and all posted statuses. 7. The commit statuses doesn't trigger notifications. 8. The commit status API introduces two new privileges: `read_commit_statuses` and `create_commit_status`. 9. We still miss a few tests and documentation updates for API and CI. @dzaporozhets @sytses What do you think? See merge request !1530
2015-10-13Project names are not fully shown if group name is too big, even on group ↵Valery Sizov
page view
2015-10-13update changelogValery Sizov
2015-10-13Add "New Page" button to Wiki Pages tabStan Hu
Closes #2998
2015-10-12Hide passwords to non-admin users in the services APIAlex Lossent
In order to be consistent with !1490 doing it for the web interface
2015-10-12Implement Commit Status APIKamil Trzcinski
2015-10-10Add CHANGELOG entry for !1543Robert Speicher
[ci skip]
2015-10-10Merge branch 'make-diff-css-better-for-mobile' into 'master' Dmitriy Zaporozhets
Make diff file view easier to use on mobile screens Viewing diffs on a mobile screen is a bit of an awkward experience at the moment. Here are a few issues (by no means complete): ## Before ### Tabs are scrunched ![image](https://gitlab.com/stanhu/gitlab-ce/uploads/45924e36cfb107dc56795a7dcdfbc5b5/image.png) ### Filenames take too much room, buttons cluttered ![image](https://gitlab.com/stanhu/gitlab-ce/uploads/a5e5611271fe26dfd3922aa0b8780458/image.png) ## After This MR makes a few tweaks to make this a bit better. It just addresses a few issues, but there is plenty of room for improvement (e.g. shrink fonts, etc.): ### Eliminate padding to make tabs fit ![image](https://gitlab.com/gitlab-org/gitlab-ce/uploads/fbcf128d1f221b9b9e53df274238dc62/image.png) ### Make filenames, buttons more readable This screenshot allows the filename to use the whole row, omits the file mode changes, and puts the buttons centered in the view: ![image](https://gitlab.com/gitlab-org/gitlab-ce/uploads/d2e5b9424f058827ba2552056c516e18/image.png) Towards a better mobile experience: #2787 See merge request !1449
2015-10-09Update CHANGELOG for Emoji fix in a3c6ed5c4Stan Hu
[ci skip]
2015-10-09Make diff file view easier to use on mobile screensStan Hu
2015-10-09fixed positioning of hamburger menu on headerHan Loong Liauw
- Changed to margin for vertical allign as used in bootstrap 3 original - Also added an `active` state to show when the extra items are enabled
2015-10-08merge_request: add work_in_progress to MR hooksBen Boeckel
2015-10-08Merge remote-tracking branch 'public/project-find-with-namespace-performance'Dmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-10-08Merge remote-tracking branch 'public/trending-projects-performance'Dmitriy Zaporozhets
2015-10-08Added changelog for project namespace performanceYorick Peterse
2015-10-08Merge branch 'XenGi/gitlab-ce-master'Stan Hu
2015-10-07Add CHANGELOG entry for "Quick Submit"Robert Speicher
[ci skip]
2015-10-07Merge branch 'stanhu/gitlab-ce-improve-label-milestones-filter'Dmitriy Zaporozhets
2015-10-07Merge branch 'cleanup-ci-pages' into 'master' Dmitriy Zaporozhets
Cleanup CI pages - [x] Remove `ci/projects/:id` page - [x] Remove Continuous integration from project menu - [x] Remove unused css/js - [x] Remove Ci::Commit and Ci::Build controllers - [x] Move CI services to project settings area cc @ayufan Part of #2594 See merge request !1529
2015-10-07Support filtering by "Any" milestone or issue and fix "No Milestone" and "No ↵Stan Hu
Label" filters Closes #2619 Closes https://github.com/gitlabhq/gitlabhq/issues/9631
2015-10-07Move CI services to project settings areaDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-10-07Allow removing of project without confirmation when JavaScript is disabledStan Hu
Closes #2485
2015-10-07Add directory feature buttonStan Hu
Change "+" icon under "Files" section to have three options: * Create file * Upload file * New directory Upload file is no longer accessible from the "Create file" page. Users can now select a target branch in upload file as well. Closes #2799: Fixes a bug where file modes were overwritten after a commit Closes https://github.com/gitlabhq/gitlabhq/issues/8253: Existing files can no longer be overwritten in the "Create file" section. Closes #2557
2015-10-06Refactor commit/build tests and fix CI cancelDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-10-06Added changelog entry for trending projects tweaksYorick Peterse
2015-10-06Merge branch 'fix_search_in_file_tree' into 'master' Dmitriy Zaporozhets
Fix search in Files https://gitlab.com/gitlab-org/gitlab-ce/issues/1873 See merge request !1511
2015-10-06Merge branch 'closer-ci-integration' into 'master' Dmitriy Zaporozhets
Use CI commit status for merge request widget For temporary compatibility with other services like Jenkins we ask for CI status via AJAX request if there is no commit status in GitLab database Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> cc @ayufan See merge request !1517
2015-10-06Fix search in FilesValery Sizov
2015-10-06Use CI commit status for merge request widgetDmitriy Zaporozhets
For temporary compatibility with other services like Jenkins we ask for CI status via AJAX request if there is no commit status in GitLab database Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-10-05Update CHANGELOG for 8.0.4Robert Speicher
[ci skip]
2015-10-05Merge branch 'user-preferences-layout-option' of ↵Dmitriy Zaporozhets
https://github.com/gopeter/gitlabhq into gopeter-user-preferences-layout-option Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-10-05Added CHANGELOG item about fixed user identities API.Patricio Cano
2015-10-05added user preference to change layout widthPeter Göbel
2015-10-05Merge branch 'ci-web-hooks'Dmitriy Zaporozhets
2015-10-05Fix anchors to comments in diffsValery Sizov
2015-10-05Move CI web hooks page to project settings areaDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-10-02Fix bug where transferring a project would result in stale commit linksStan Hu
Transferring a project to another namespace updates the project's updated_at field, but since the cache key did not depend on the object, the page fragments were not invalidated. This resulted in stale links to the commits. Changing the cache key to use the object pathname solves this issue. Closes gitlab-org/omnibus-gitlab#843
2015-10-02hooks: Add full project namespace to payloadRicardo Band
Payload of "project_member, :create" and "project_member, :destroy" now also have a field project_path_with_namespace.
2015-10-02Merge remote-tracking branch 'public/hide_services_password'Dmitriy Zaporozhets
2015-10-02Wrong access level badge on MR commentsValery Sizov
2015-10-02Hide password in the service settings formValery Sizov