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
2018-09-14Move GFM autocomplete setup, delete dispatcherMike Greiling
2018-09-14Move shortcuts instantiation into behaviorsMike Greiling
2018-09-14Move performance_bar setup to dispatcher to main.jsMike Greiling
2018-09-14Move search autocomplete from dispatcher to main.jsMike Greiling
2018-09-14Move initFieldErrors from dispatcher to main.jsMike Greiling
2018-06-27Start performance bar eagerlySean McGivern
On the issues page (for instance), we have an `Issue` class. The constructor for that class makes some calls to get things like related branches using Axios. However, those calls were happening before the performance bar app was mounted, and so the interceptor wasn't configured - meaning we missed out on the performance data for those calls. This changes the performance bar app to be loaded eagerly instead of lazily, which solves that problem - related branches calls will now show up in the performance bar. The downside is that now the performance bar app is always imported, even when it's not used. However, it appears to be part of the main app bundle anyway, so this shouldn't affect the size of our assets.
2018-06-20remove all unused eslint-disable rulesLukas Eipert
2018-03-19Show Ajax requests in performance barSean McGivern
But first, rewrite the performance bar in Vue: 1. Remove the peek-host gem and replace it with existing code. This also allows us to include the host in the JSON response, rather than in the page HTML. 2. Leave the line profiler parts as here-be-dragons: nicer would be a separate endpoint for these, so we could use them on Ajax requests too. 3. The performance bar is too fiddly to rewrite right now, so apply the same logic to that. Then, add features! All requests made through Axios are able to be tracked. To keep a lid on memory usage, only the first two requests for a given URL are tracked, though. Each request that's tracked has the same data as the initial page load, with the exception of the performance bar and the line profiler, as explained above.
2018-03-10require jQuery to be explicitly importedMike Greiling
2018-02-26Refactor wildcard dispatcher importsClement Ho
2018-02-23Convert switch into if statementClement Ho
2018-02-22Use dynamic imports in dispatcher (Part 3)Clement Ho
2018-02-22Merge branch 'dispatcher-import-batch-1' into 'master'Jacob Schatz
Use dynamic imports in dispatcher See merge request gitlab-org/gitlab-ce!17273
2018-02-21Rest of Dispatcher RefactorJacob Schatz
2018-02-21Use dynamic imports in dispatcherClement Ho
2018-02-21Use dynamic imports for project dispatcher pathsClement Ho
2018-02-21migrate admin:* to static bundleMike Greiling
2018-02-21migrate omniauth_callbacks:* to static bundleMike Greiling
2018-02-21migrate sessions:* to static bundleMike Greiling
2018-02-21migrate projects:clusters:* to static bundleMike Greiling
2018-02-21migrate dashboard:activity to static bundleMike Greiling
2018-02-21migrate projects:merge_requests:show to static bundleMike Greiling
2018-02-21migrate projects:releases:edit to static bundleMike Greiling
2018-02-21migrate projects:services:edit to static bundleMike Greiling
2018-02-21migrate projects:tags:new to static bundleMike Greiling
2018-02-21migrate projects:snippets:* to static bundleMike Greiling
2018-02-21migrate snippets:show to static bundleMike Greiling
2018-02-21migrate snippets:* to static bundleMike Greiling
2018-02-19Remove import so that webpack can handle the moduleClement Ho
2018-02-16Merge branch 'fix-more-dispatcher-stuff' into 'master'Jacob Schatz
Remove more route-based chunks from dispatcher.js See merge request gitlab-org/gitlab-ce!16901
2018-02-16migrate admin:users:* to static bundleMike Greiling
2018-02-16correct for missing break statement in dispatcher.jsMike Greiling
2018-02-16migrate projects:merge_requests:edit to static bundleMike Greiling
2018-02-16migrate projects:merge_requests:creations:diffs to static bundleMike Greiling
2018-02-16migrate projects:merge_requests:creations:new to static bundleMike Greiling
2018-02-16migrate projects:issues:new and projects:issues:edit to static bundleMike Greiling
2018-02-16migrate projects:branches:index to static bundleMike Greiling
2018-02-16migrate projects:branches:new to static bundleMike Greiling
2018-02-16migrate projects:compare:show to static bundleMike Greiling
2018-02-16migrate projects:environments:metrics to static bundleMike Greiling
2018-02-16migrate projects:milestones:* and groups:milestones:* to static bundleMike Greiling
2018-02-16migrate explore:groups:index to static bundleMike Greiling
2018-02-16migrate explore:projects:* to static bundleMike Greiling
2018-02-16migrate dashboard:projects:* to static bundleMike Greiling
2018-02-16migrate dashboard:todos:index to static bundleMike Greiling
2018-02-16migrate groups:merge_requests to static bundleMike Greiling
2018-02-16migrate groups:issues to static bundleMike Greiling
2018-02-16migrate dashboard:merge_requests to static bundleMike Greiling
2018-02-16migrate dashboard:issues to static bundleMike Greiling
2018-02-16migrate dashboard:milestones:show to static bundleMike Greiling