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
2017-10-02Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce into rails5Valery Sizov
2017-09-29Merge branch 'fork-btn-enabled-user-groups' into 'master'Filipa Lacerda
Fix fork button being disabled for users who can fork to group Closes #38462 See merge request gitlab-org/gitlab-ce!14551
2017-09-29Merge branch 'jramsay-4012-externalize-wiki-strings' into 'master'Douwe Maan
Add translatable strings to wiki pages See merge request gitlab-org/gitlab-ce!14534
2017-09-29moved fork checks into policiesPhil Hughes
2017-09-29Fix fork button being disabled for users who can fork to groupPhil Hughes
Previously the fork button was disabled for all users if they have exceeded their project limit. This fixes that by changing the check to see if the user can fork to a group instead of their own namespace. This behaviour is already possible by visiting the new fork page directly, so this just fixes the button being disabled. Closes #38462
2017-09-29Merge branch 'first-time-contributor-tooltip-text' into 'master'Filipa Lacerda
Tweaked the first time contributor tooltip text See merge request gitlab-org/gitlab-ce!14565
2017-09-28Add translatable strings to wiki pagesJames Ramsay
2017-09-28Tweaked the first time contributor tooltip textPhil Hughes
Removes the text `Handle with care` as it sounds condescending.
2017-09-28Remove target ref switcher.Jacob Schatz
2017-09-27Fixed missing namespaces on navigation translationsPhil Hughes
2017-09-26Merge branch 'remove-old-nav-styles' into 'master'Phil Hughes
Remove old nav code - Part 1 See merge request gitlab-org/gitlab-ce!14379
2017-09-26Fix a dash being rendered in the note's access roleMicael Bergeron
2017-09-25Merge branch '38155-autodevops-typo' into 'master'Achilleas Pipinellis
Fix auto devops typos in Pipeline Settings view Closes #38155 See merge request gitlab-org/gitlab-ce!14403
2017-09-25Fix specsAnnabel Dunstone Gray
2017-09-25Remove all old sub nav barsAnnabel Dunstone Gray
2017-09-22Removed old icons from project pagePhil Hughes
2017-09-22Make branches page translatableWinnie Hellmann
2017-09-22Resolve "Better SVG Usage in the Frontend"Tim Zallmann
2017-09-22Merge branch 'add-view-replaced-file-link' into 'master'Rémy Coutable
Add view replaced file link for image diffs See merge request gitlab-org/gitlab-ce!14394
2017-09-22Fix auto devops typos in Pipeline Settings viewMark Fletcher
2017-09-20Add view replaced file link for image diffsClement Ho
2017-09-20Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce into rails5(partial ↵Valery Sizov
resolvation)
2017-09-20Merge branch 'add_tooltip_for_milestone_in_issues_list' into 'master'Douwe Maan
Add tooltip for milestone due date to issue and merge request lists Closes #18864 See merge request gitlab-org/gitlab-ce!14318
2017-09-19Merge branch '37894-handle-if-auto-devops-domain-is-not-set' into 'master'Stan Hu
Resolve "Handle if Auto DevOps domain is not set" Closes #37894 See merge request gitlab-org/gitlab-ce!14319
2017-09-19Add tooltip for milestone due date to issue and merge request listsVitaliy @blackst0ne Klachkov
2017-09-19Update _show.html.hamlFabio Busatto
2017-09-19Improve after code-reviewKamil Trzcinski
2017-09-19Add warning message if domain or cluster are not configuredbokebilly
2017-09-19Revert changes made to merge requests blank slateKamil Trzcinski
2017-09-19Enhance reuse in MRbikebilly
2017-09-19Enhance reuse in MRbikebilly
2017-09-19Remove double div in MRbikebilly
2017-09-19Remove double divbikebilly
2017-09-19Add banner in missing pagesbokebilly
2017-09-19Change all instances of btn-sm to btn-small to keep things consistentJedidiah
2017-09-19Merge branch 'zj-update-project-settings' into 'master'Grzegorz Bizon
Allow updating of project auto devops settings Closes #37893 See merge request gitlab-org/gitlab-ce!14291
2017-09-19Merge branch '37465-fix-line-resolve-all-green-checkmark-icon' into 'master'Annabel Dunstone Gray
Update "x/x discussions resolved" checkmark icon to be green when all discussions resolved Closes #37465 See merge request gitlab-org/gitlab-ce!14255
2017-09-18Improve “New project“ page descriptionPedro Moreira da Silva
Explain what a project is instead of what a user can do
2017-09-18Fix instance default option being true as valueZeger-Jan van de Weg
When a user selected 'Instance default' as value for the auto devops settings, this was interpreted as a true value. Now we post an empty string in this case, meaning we want to set `NULL` in the database. Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/37893#note_40541294
2017-09-15Merge branch '21331-improve-confusing-compare-page' into 'master'Phil Hughes
Make the labels in the Compare form less confusing Closes #21331 See merge request gitlab-org/gitlab-ce!14225
2017-09-15Merge branch 'projects-controller-show' into 'master'Rémy Coutable
SQL performance improvements for ProjectsController#show See merge request gitlab-org/gitlab-ce!14226
2017-09-15Display whether branch has been merged when deleting protected branchWinnie Hellmann
2017-09-15Make the labels in the Compare form less confusingRémy Coutable
* Improve the descriptive text * Rename "from" to "Target" and "to" to "Source" * Swap "Target" and "Source" to have the same order as in MRs * Reworded "Switch base of comparison" to "Swap versions" Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-09-15Fix typoFabio Busatto
2017-09-14Merge branch 'changes-overflow-fix' into 'master'Annabel Dunstone Gray
Fixed overflow issue in changes dropdown See merge request gitlab-org/gitlab-ce!14181
2017-09-14Memoize the latest builds of a pipelineYorick Peterse
This ensures that if a pipeline is present for the last commit on a project's homepage we only run 1 query to get the builds, instead of running 2 queries. See https://gitlab.com/gitlab-org/gitlab-ce/issues/36878#note_40073339 for more information.
2017-09-14Memoize pipelines for project download buttonsYorick Peterse
This adds Project#latest_successful_pipeline_for and Project#latest_successful_pipeline_for_default_branch. The 2nd method memoizes the result (taking nil values into account) to ensure the underlying query isn't executed multiple times when viewing a project's homepage. See https://gitlab.com/gitlab-org/gitlab-ce/issues/36878#note_40073607 for more information.
2017-09-13RepoEditor: Fix empty state for image blob view.Fatih Acet
2017-09-13Update line-resolve-all checkmark to be green when all discussions resolvedEric Eastwood
Fix https://gitlab.com/gitlab-org/gitlab-ce/issues/37465 Related MRs - https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/13821 - https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/14042
2017-09-13Fixed overflow issue in changes dropdownPhil Hughes