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/app
AgeCommit message (Collapse)Author
2015-10-12Make the loading spinner toggle more explicitRobert Speicher
Occasionally the loading spinner would stay visible after the tab finished loading. This change makes the toggle explicit so that it's always shown on `beforeSend`, and always hidden on `complete`. Plus a bonus semi-colon eradication! :boom:
2015-10-05Fix admin runner page -> assign all buttonDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-10-05Fix: CI token removal regression from build traceKamil Trzcinski
2015-10-05Fix anchors to comments in diffsValery Sizov
2015-10-05Fix referals for :back and relative URL installs.Geoffrey Challen
2015-10-05Fix Message-ID field to be RFC 2111-compliant to prevent e-mails from being ↵Stan Hu
dropped Closes #2867
2015-09-29Fix Error 500 in creating merge requests with > 1000 diffsStan Hu
Closes #2692
2015-09-29Merge branch 'fix-stuck-forked-project-import' into 'master' Dmitriy Zaporozhets
Fix bug where projects would appear to be stuck in the forked import state A race condition existed between when Rails committed the `import_status` to `started` and when the Sidekiq worker forked a project. If this fork were quick, it's possible that the worker would attempt to move into the `finished` state before the `started` state took effect. As mentioned in https://github.com/mperham/sidekiq/wiki/Problems-and-Troubleshooting#cannot-find-modelname-with-id12345, we can either delay the worker to ensure the DB has a chance to update, or use the nice `after_commit_queue` gem to schedule the task after the state machine commit. See: * https://github.com/pluginaweek/state_machine/issues/191 * https://github.com/shellycloud/after_commit_queue Closes #2736 See merge request !1434
2015-09-29Merge branch 'remove-routes-helper' into 'master'Dmitriy Zaporozhets
Fix Slack notification URL and remove the usage of Ci::RoutesHelper Fix for #2644 See merge request !1391
2015-09-25I misunderstood how the button worked.Sytse Sijbrandij
2015-09-25Make instructions for CI disable checkbox clear.Sytse Sijbrandij
2015-09-24Merge branch 'get-ci-token-from-ci-projects' into 'master'Robert Speicher
Get CI token from ci projects This fixes problem when GitLabCiService had different token than stored in Ci::Project. See merge request !1425
2015-09-24Merge branch 'rs-help-page' into 'master' Douwe Maan
Help page improvements - Only signed-in users can see version information - Add "Community Edition" text so the header is less barren when version information is hidden - Minor copy edits - Make all "Quick help" link text the entire body of the link. Prior, it wasn't obvious which part of each item was an actual link. Closes #2721 See merge request !1415
2015-09-24Use standard Markdown font in Markdown preview instead of fixed-width fontStan Hu
Closes #2585
2015-09-24Fix default avatar not showing up in network graphStan Hu
Closes https://github.com/gitlabhq/gitlabhq/issues/9657
2015-09-24Remove git refs used internally by GitLab from network graphStan Hu
Closes #2702
2015-09-23Merge branch 'rs-sign-in-margin' into 'master' Robert Speicher
Fix top margin for sign-in button on public pages Closes #2615 [ci skip] See merge request !1412
2015-09-23Make commit graphs responsive to window width changesStan Hu
Closes #2653
2015-09-23clarify confirmation text on user deletion.Hannes Rosenögger
2015-09-23Merge branch 'rs-fix-help-links' into 'master' Douwe Maan
Prevent double-prefixing of help page paths Closes #2679 See merge request !1400
2015-09-22Merge branch 'fix-ci-permissions' into 'master'Dmitriy Zaporozhets
Fix CI permissions ![Screen_Shot_2015-09-21_at_20.23.16](https://gitlab.com/gitlab-org/gitlab-ce/uploads/6f40699507d0dce148d0054a093f0d63/Screen_Shot_2015-09-21_at_20.23.16.png) This fixes two problems: - Allow developers to retry builds - Hide advanced project options from CI page for non-admin users See merge request !1379
2015-09-22Tweak remaining CSS for Markdown previewStan Hu
Missed a few items in !1378
2015-09-21Merge branch 'fix-issue-2593' into 'master' Robert Speicher
Fix Error 500 when comparing non-existing branches Closes #2593 See merge request !1355
2015-09-21Merge branch 'rename-reply-by-email' into 'master' Robert Speicher
Rename reply_by_email to incoming_email to prepare for the future. Closes #2579. See merge request !1367
2015-09-21Merge branch 'fix-ci-handling' into 'master' Dmitriy Zaporozhets
Fixed MR handling when GitLab CI project is not present This is copy of !1371 /cc @jacobvosmaer @vsizov @dzaporozhets See merge request !1373
2015-09-21Merge branch 'fix-note-edit-preview-css' into 'master' Robert Speicher
More tweaks to make note edit/preview CSS consistent Closes #2585 See merge request !1378
2015-09-21Merge branch 'fix-mr-without-refs' into 'master' Dmitriy Zaporozhets
Fetch merge request ref if it is missing when visit MR page This will fix merge problem for merge requests between forks created before 8.0 Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> Needed for 8.0 Fixes #2580 See merge request !1377
2015-09-21More tweaks to make note edit/preview CSS consistentStan Hu
Closes #2585
2015-09-21Merge branch 'fix-milestone-destroy-in-mr' into 'master' Dmitriy Zaporozhets
Remove milestones from merge requests when milestones are deleted Destroying a milestone does not remove it from existing merge requests. This MR fixes that. Requires f4816372 to pull in as well. Reported by https://github.com/gitlabhq/gitlabhq/issues/9643 See merge request !1348
2015-09-21Merge branch 'repo-size-link' into 'master' Dmitriy Zaporozhets
Link project repo size to files See merge request !1374
2015-09-21Merge branch 'remove-project-panel-ci-button' into 'master' Dmitriy Zaporozhets
Remove CI button from project home panel Since we already have a "Continuous Integration" item in the sidebar now, I don't think we need "CI" on the project page. See merge request !1372
2015-09-21Merge branch 'ci-nav-fw' into 'master' Dmitriy Zaporozhets
Use fixed-width icons in CI nav sidebar. See merge request !1376
2015-09-21Fetch merge request ref if it is missing when visit MR pageDmitriy Zaporozhets
This will fix merge problem for merge requests between forks created before 8.0 Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-09-21Remove milestones from merge requests when milestones are deletedStan Hu
Reported by https://github.com/gitlabhq/gitlabhq/issues/9643
2015-09-21Use fixed-width icons in CI nav sidebar.Douwe Maan
2015-09-21Use consistent styling for number of commits in CI nav sidebarDouwe Maan
2015-09-21Link project repo size to filesDouwe Maan
2015-09-21Fixed MR handling when GitLab CI project is not presentKamil Trzcinski
2015-09-21Remove CI button from project home panelDouwe Maan
2015-09-21Revert "Fixed MR handling when GitLab CI project is not present"Kamil Trzcinski
This reverts commit 3abcab779ec3015914eda5d715b4a9588445d815.
2015-09-21Fixed MR handling when GitLab CI project is not presentKamil Trzcinski
2015-09-21Merge branch 'notification-levels' into 'master' Douwe Maan
Notification levels can now be set on the Project's main page ![Screen_Shot_2015-09-16_at_7.49.49_PM](https://gitlab.com/gitlab-org/gitlab-ce/uploads/0ac517bdfdc801f0e2115463c3ea9e10/Screen_Shot_2015-09-16_at_7.49.49_PM.png) The notification settings for a project can now be set directly on the Project's page. The drop down list and the button label reflect the current level. Saving is done via a remote form submission and if successful shows the user a flash message: ![Screen_Shot_2015-09-16_at_6.09.02_PM](https://gitlab.com/gitlab-org/gitlab-ce/uploads/8a6e1fde5177aa3976cadf59fdb8d375/Screen_Shot_2015-09-16_at_6.09.02_PM.png) @DouweM can you please review my code. I gave my bestest effort to make in clean and readable. @rspeicher hopefully we can include it with the 8.0 release, maybe? /cc @darby See merge request !1322
2015-09-21Merge branch 'sh-fix-issue-2585' into 'master' Dmitriy Zaporozhets
Make Markdown area formatting consistent Issue #2585 See merge request !1354
2015-09-21Merge branch 'master' into rename-reply-by-emailDouwe Maan
2015-09-21Rename reply_by_email to incoming_email to prepare for the future.Douwe Maan
2015-09-21Merge branch 'optimize-ci-tags-migration' into 'master' Marin Jankovski
CI migration rake task for GitLab CE - Uses backup format for final GitLab CI 8.0 - Highly optimized tags migration SQL queries See merge request !1365
2015-09-21Merge branch 'fail-ci-builds-without-yml' into 'master' Dmitriy Zaporozhets
Fail ci builds without yml Fix for https://gitlab.com/gitlab-org/gitlab-ce/issues/2551 See merge request !1349
2015-09-21Merge branch 'fix-markdown-links-in-dashboard' into 'master' Douwe Maan
Fix Markdown links not showing up in dashboard activity feed Closes #2586 See merge request !1353
2015-09-21Merge branch 'reply-by-email-diff' into 'master' Robert Speicher
Fix reply by email for comments on a specific line in a diff/commit. Fixes #2363. See merge request !1364
2015-09-21Change wordingKamil Trzcinski