summaryrefslogtreecommitdiff
path: root/app
Commit message (Collapse)AuthorAgeFilesLines
* Move CI variables page to project settingsmove-variables-pageDmitriy Zaporozhets2015-09-287-47/+39
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Merge branch 'move-runners-page'Dmitriy Zaporozhets2015-09-2816-100/+107
|\
| * Finish move of runners page to project settingsDmitriy Zaporozhets2015-09-282-2/+2
| | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
| * Move runners page to project settingsDmitriy Zaporozhets2015-09-2513-97/+104
| | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
| * Fix admin runner page -> assign all buttonDmitriy Zaporozhets2015-09-251-1/+1
| | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | Merge branch 'cyrillic-font' into 'master' Dmitriy Zaporozhets2015-09-284-0/+0
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | Update Source Sans Pro font: adds support for cyrillic characters Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> Fixes #2764 See merge request !1454
| * | Update Source Sans Pro font: adds support for cyrillic characterscyrillic-fontDmitriy Zaporozhets2015-09-284-0/+0
| | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | | Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ceDouwe Maan2015-09-2821-117/+443
|\ \ \
| * \ \ Merge branch 'projects'Dmitriy Zaporozhets2015-09-2821-117/+443
| |\ \ \ | | |/ / | |/| | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
| | * | !important removed from preAndrey2015-09-283-10/+5
| | | |
| | * | edit action allignAndrey2015-09-282-6/+6
| | | |
| | * | Project page UpdateAndrey2015-09-2512-195/+263
| | | | | | | | | | | | | | | | | | | | refactoring buttons, fixes for projects filter on the dashboard and group page
| | * | UI changes to the project view, empty project and project list new project ↵Andrey2015-09-249-69/+373
| | | | | | | | | | | | | | | | button
* | | | Merge branch 'fxposter/gitlab-ce-login-from-admin'Douwe Maan2015-09-282-0/+8
|\ \ \ \ | |/ / / |/| | |
| * | | Remove stuff from previous UIPavel Forkert2015-09-241-1/+1
| | | |
| * | | Move login button to user page, switched to POST methodPavel Forkert2015-09-242-1/+2
| | | |
| * | | Add option to admin area to sign in as a specific userPavel Forkert2015-09-242-1/+8
| | | | | | | | | | | | | | | | Closes #2291
* | | | Merge branch 'add-activity-dashboard-preference' into 'master' Dmitriy Zaporozhets2015-09-283-2/+8
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add user preference to view project activity and starred project activity as default dashboard Screenshot: ![image](https://gitlab.com/gitlab-org/gitlab-ce/uploads/5e39fa66da50e01dd9ed1c8a9ce01ea9/image.png) Closes #2662 See merge request !1446
| * | | | Add user preference to view project activity and starred project activity as ↵Stan Hu2015-09-263-2/+8
| | |_|/ | |/| | | | | | | | | | | | | | | | | | default dashboard Closes #2662
* | | | Fix grammar in admin area labels .nothing-here-block when no labels exist.Aaron Snyder2015-09-261-2/+2
|/ / / | | | | | | | | | updating admin area > "Labels" text to "There are no labels yet.", per Stan Hus suggestion.
* | | Merge branch 'stanhu/gitlab-ce-fix-mr-creation-with-large-diffs'Dmitriy Zaporozhets2015-09-251-2/+2
|\ \ \
| * | | Fix Error 500 in creating merge requests with > 1000 diffsStan Hu2015-09-251-2/+2
| | | | | | | | | | | | | | | | Closes #2692
* | | | Merge branch 'fix-stuck-forked-project-import' into 'master' Dmitriy Zaporozhets2015-09-251-2/+7
|\ \ \ \ | |/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| * | | Use after_commit_queue to schedule import job immediatelyStan Hu2015-09-251-5/+8
| | | |
| * | | Fix bug where projects would appear to be stuck in the forked import stateStan Hu2015-09-251-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A race condition existed between when Rails committed the `import_status` to `started` and when the Sidekiq worker forked a project. If this fork was 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 should delay the worker to ensure the DB has a chance to update. Closes #2736
* | | | Merge branch 'handle-bad-head' into 'master' Dmitriy Zaporozhets2015-09-251-1/+1
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix Error 500 occuring with repositories that have a bad HEAD A repository could have objects but no valid HEAD, causing `project.commit` to be `nil`. See merge request !1433
| * | | | Fix Error 500 occuring with repositories that have a bad HEADStan Hu2015-09-241-1/+1
| |/ / / | | | | | | | | | | | | | | | | A repository could have objects but no valid HEAD, causing `project.commit` to be `nil`.
* | | | Merge branch 'get-ci-token-from-ci-projects' into 'master' Robert Speicher2015-09-242-3/+7
|\ \ \ \ | |/ / / |/| | | | | | | | | | | | | | | | | | | | | | | Get CI token from ci projects This fixes problem when GitLabCiService had different token than stored in Ci::Project. See merge request !1425
| * | | Fix specsKamil Trzcinski2015-09-241-1/+1
| | | |
| * | | Remove unneeded changeKamil Trzcinski2015-09-241-1/+2
| | | |
| * | | Get GitLabCiService token from CI projectKamil Trzcinski2015-09-241-4/+7
| | | |
* | | | Fix default avatar not showing up in network graphStan Hu2015-09-241-1/+1
| | | | | | | | | | | | | | | | Closes https://github.com/gitlabhq/gitlabhq/issues/9657
* | | | Remove CI dashboardDmitriy Zaporozhets2015-09-248-86/+8
|/ / / | | | | | | | | | | | | | | | | | | With CI status integrated at GitLab projects page there is no reason to keep it anymore. Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | | Show CI status on Your projects page and Starred projects pageci-status-projects-pageDmitriy Zaporozhets2015-09-244-5/+21
| | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | | Merge branch 'fix-markdown-preview-font' into 'master' Dmitriy Zaporozhets2015-09-241-1/+0
|\ \ \ | |/ / |/| | | | | | | | | | | | | | Use standard Markdown font in Markdown preview instead of fixed-width font Closes #2585 See merge request !1414
| * | Use standard Markdown font in Markdown preview instead of fixed-width fontStan Hu2015-09-231-1/+0
| | | | | | | | | | | | Closes #2585
* | | Merge branch 'build-status-on-commit-page' into 'master' Dmitriy Zaporozhets2015-09-244-34/+46
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Build status on commit page Screenshot: ![Screenshot_2015-09-24_11.29.54](https://gitlab.com/gitlab-org/gitlab-ce/uploads/49d1b9dc60d328dceaf771b5e44726ca/Screenshot_2015-09-24_11.29.54.png) Part of #2594 See merge request !1418
| * | | Show CI status on commit pageDmitriy Zaporozhets2015-09-242-0/+9
| | | | | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
| * | | Refactor ci-status badge cssDmitriy Zaporozhets2015-09-242-34/+37
| | | | | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | | | Merge branch 'remove-routes-helper' into 'master' Dmitriy Zaporozhets2015-09-244-37/+14
|\ \ \ \ | |/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | Fix Slack notification URL and remove the usage of Ci::RoutesHelper Fix for #2644 /cc @dzaporozhets @rspeicher See merge request !1391
| * | | Fix CIKamil Trzcinski2015-09-221-0/+2
| | | |
| * | | Fix Slack notification URL and remove the usage of Ci::RoutesHelperKamil Trzcinski2015-09-224-37/+12
| | | |
* | | | Merge branch 'move-ci-charts' into 'master' Dmitriy Zaporozhets2015-09-2411-55/+50
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Move CI charts to project graphs area Part of #2594 Should be merged after !1405 Same page but moved to another place ![Screenshot_2015-09-23_16.25.15](https://gitlab.com/gitlab-org/gitlab-ce/uploads/ef7266de0528bd6dd3f95159e161ea9a/Screenshot_2015-09-23_16.25.15.png) See merge request !1407
| * | | | Check for CI enabled in correct placeDmitriy Zaporozhets2015-09-242-1/+1
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
| * | | | Add header for ci graphs and check that it is enabledDmitriy Zaporozhets2015-09-242-0/+8
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
| * | | | Merge branch 'master' into move-ci-chartsDmitriy Zaporozhets2015-09-2412-79/+118
| |\ \ \ \
| * | | | | Move CI charts to project graphs areaDmitriy Zaporozhets2015-09-2310-55/+42
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | | | | | Merge branch 'rs-help-page' into 'master' Douwe Maan2015-09-242-21/+11
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| * | | | | | Allow non-admin users to see version informationrs-help-pageRobert Speicher2015-09-231-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We want users to know what features they have available (and to pressure their admins to upgrade).
| * | | | | | Move the `version_check_enabled` check from view to helperRobert Speicher2015-09-232-3/+2
| | | | | | |