summaryrefslogtreecommitdiff
path: root/app/assets
Commit message (Collapse)AuthorAgeFilesLines
* Fix performance bar warnings when Rugged is disabledsh-fix-performance-bar-warningsStan Hu2019-08-011-1/+1
| | | | | | | | `detailed_metric.vue` was attempting to read the `duration` field even when the metric did not exist in the JSON payload. We now check for the existence of the metrics before attempting to display the value. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/65491
* Revert "Merge branch 'mh/editor-indents' into 'master'"revert-editor-indentsPaul Slaughter2019-08-017-472/+19
| | | | | This reverts commit 28f2225bdfee4d353f07a766c6c8b29ba6181397, reversing changes made to 96ae5bd83da31350e9856a290127d7aa1469710a.
* Jupyter fix hostname editing and remove extra load balancerAmit Rathi2019-08-011-0/+1
|
* Merge branch '62178-remove-manual-sorting-feature-flag' into 'master'Sean McGivern2019-08-011-1/+1
|\ | | | | | | | | Remove the manual sorting feature flag See merge request gitlab-org/gitlab-ce!30131
| * Remove manual_sorting flag from FE62178-remove-manual-sorting-feature-flagRajat Jain2019-07-311-1/+1
| |
* | Adds new tracking interface for snowplowJeremy Jackson2019-08-011-0/+67
|/ | | | | This will ultimately replace the stats.js that exists in EE.
* Add percentage rollout support to feature flag UI (CE)Nathan Friend2019-07-311-0/+1
| | | | | This commit updates the feature flags pages to includes support for the percentage rollout strategy.
* Port CE changes from EEcharlie ablett2019-07-311-3/+5
| | | | | - DB migration of board milestone values - issue finder & spec updates
* Allow knative do be uninstalled:João Cunha2019-07-311-1/+3
| | | | | | | | | | | | | | - After uninstalling the knative helm chart it's necessary to also remove some leftover resources to allow the cluster to be clean and knative to be reinstalleable. - Adds knative uninstall disclaimer - Uninstall ksvc before uninstalling knative Make list of Knative and Ingres resources explicit - To avoid deleting unwanted resources we are listing exact which resources will be deleted rather than simply deleting any resource that contains istio or knative words.
* Merge branch 'mg-update-icons-svg-import' into 'master'Kushal Pandya2019-07-312-1/+6
|\ | | | | | | | | Use file-loader for sprite icons within icon.vue See merge request gitlab-org/gitlab-ce!31257
| * Override icons.svg asset path with sprockets assetmg-update-icons-svg-importMike Greiling2019-07-291-0/+3
| |
| * Use file-loader to import icon spritesMike Greiling2019-07-291-1/+3
| |
* | Remove pdf.js deprecation warningssh-remove-pdfjs-deprecationsStan Hu2019-07-302-3/+3
| | | | | | | | | | | | | | | | 1. `page.getViewpoint()` now takes in JSON instead of an integer. 2. Promises are returned from loading and rendering tasks. See https://mozilla.github.io/pdf.js/examples/index.html for more details.
* | Remove line profiler from performance barSean McGivern2019-07-302-34/+0
| | | | | | | | | | | | | | | | | | 1. The output isn't great. It can be hard to find hotspots and, even when you do find them, to find why those are hotspots. 2. It uses some jQuery-specific frontend code which we can remove now that we don't have this any more. 3. It's only possible to profile the initial request, not any subsequent AJAX requests.
* | Alerts dropdown to modal - CE1Simon Knox2019-07-292-1/+9
| |
* | Change qa-* class references to js-* for suggestionsTanya Pazitny2019-07-293-4/+4
| |
* | Change qa-* class references to js-* for squash-checkboxTanya Pazitny2019-07-291-1/+1
| |
* | Merge branch 'sh-add-cmaps-for-pdfjs' into 'master'Mike Greiling2019-07-291-1/+5
|\ \ | | | | | | | | | | | | | | | | | | Make pdf.js render CJK characters Closes #62152 See merge request gitlab-org/gitlab-ce!31220
| * | Make pdf.js render CJK characterssh-add-cmaps-for-pdfjsStan Hu2019-07-281-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | As mentioned in https://github.com/wojtekmaj/react-pdf/blob/master/README.md, pdf.js needs the bundled cMaps files to work. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/62152
* | | Merge branch 'sh-fix-pdfjs-page-ordering' into 'master'Mike Greiling2019-07-292-9/+11
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | Fix pdf.js rendering pages in the wrong order Closes #64467 See merge request gitlab-org/gitlab-ce!31222
| * | Simplify pdf.js logicsh-fix-pdfjs-page-orderingLukas Eipert2019-07-292-15/+11
| | | | | | | | | | | | | | | Instead of complicated splicing, we can simply return all pages. Promise.all will take care of the correct ordering for us.
| * | Fix pdf.js rendering pages in the wrong orderStan Hu2019-07-291-1/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | There was an implicit assumption that the pages returned from the Promise of `pdf.getPage(num)` would return in order, but no such guarantee exists. To handle this, we explicitly set which array index based on the page number and then trigger a Vue update via `splice`. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/64467
* | | Merge branch 'remove-peek-pg' into 'master'Stan Hu2019-07-292-10/+15
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Replace peek-pg with our own implementation Closes #44441 See merge request gitlab-org/gitlab-ce!31187
| * | | Replace peek-pg with our own implementationremove-peek-pgSean McGivern2019-07-262-10/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This uses an ActiveRecord subscriber to get queries and calculate the total query time from that. This means that the total will always be consistent with the queries in the table. It does however mean that we could potentially miss some queries that don't go through ActiveRecord. Making this change also allows us to unify the response JSON a little bit, making the frontend slightly simpler as a result.
* | | | Add MR form to runtime Visual Review configurationSarah Groff Hennigh-Palermo2019-07-2919-271/+586
| |/ / |/| | | | | | | | | | | | | | | | | | | | * adds the ability to enter a merge request ID directly into the toolbar, * adds the option to save the ID to `localStorage` (as with the token), * adds a link to change the ID once entered * adds some more explanatory errors for 401 & 404 * saves the comment to session storage if the user navigates away without posting it
* | | Add Job specific variablesMatija Čupić2019-07-295-5/+236
| | | | | | | | | | | | | | | Adds Job specific variables to facilitate specifying variables when running manual jobs.
* | | Merge branch ↵Kushal Pandya2019-07-292-7/+67
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | | | | | | | '61787-the-colour-selector-for-broadcast-messages-should-provide-a-few-default-options-with-descriptive-labels-like-red-green-blue' into 'master' Resolve "Add color selector for broadcast messages" Closes #61787 See merge request gitlab-org/gitlab-ce!30988
| * | Add default colors for broadcast messages61787-the-colour-selector-for-broadcast-messages-should-provide-a-few-default-options-with-descriptive-labels-like-red-green-blueAmmar Alakkad2019-07-261-7/+42
| | |
| * | Add color utils with relevant testsAmmar Alakkad2019-07-261-0/+25
| |/
* | Adding changes to CE from EETomislav Nikic2019-07-274-4/+8
| | | | | | | | | | All the changes done to files that are also inside CE and need to be ported.
* | (CE Port) Add MR table component for Productivity AnalyticsMartin Wortschack2019-07-262-0/+17
|/
* Add UndoStack class - a custom undo/redo engineMartin Hanzel2019-07-267-19/+472
| | | | It will be hooked up to the markdown editor later
* Update namespace label text for managed clustersJacques Erasmus2019-07-253-0/+39
| | | | Added the ability to update the namespace label text for gitlab-managed
* Autofix i18n lints for vue filesEzekiel Kigbo2019-07-253-15/+20
| | | | | Autofixes additional linting errors found in vue files.
* Removed pluralize functionEzekiel Kigbo2019-07-244-22/+11
| | | | | Replaced instance of the `pluralize` js function with `n__` to follow our development guide.
* Merge branch 'rverissimo-master-patch-43755' into 'master'64970-cannot-click-open-a-dropdown-merge-button-in-merge-requestsClement Ho2019-07-242-3/+6
|\ | | | | | | | | | | | | Update tooltip values to meet design specs Closes gitlab-ui#264 See merge request gitlab-org/gitlab-ce!30981
| * Update tooltip values to meet design specsrverissimo-master-patch-43755Rayana Verissimo2019-07-202-3/+6
| |
* | Add projectIds to CA serviceBrandon Labuschagne2019-07-241-2/+6
| |
* | Add Rugged calls to performance barStan Hu2019-07-231-0/+6
| | | | | | | | | | | | This will help diagnose the source of excessive I/O from Rugged calls. To implement this, we need to obtain the full list of arguments sent to each request method.
* | Add empty chart componentJose Ivan Vargas2019-07-244-8/+63
| | | | | | | | | | | | | | | | This merge request adds an empty chart component which will load in case of queries not having data to display, this will override the current logic, which hides all the graphs that have no data to show
* | Encapsulate file view modes with constantsChris Toynbee2019-07-233-9/+20
| |
* | Merge branch 'sh-update-mermaid' into 'master'Tim Zallmann2019-07-231-0/+1
|\ \ | | | | | | | | | | | | | | | | | | Update Mermaid to v8.2.3 Closes #64601 See merge request gitlab-org/gitlab-ce!30985
| * | Update Mermaid to v8.2.3sh-update-mermaidStan Hu2019-07-231-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes fill colors not working with Mermaid and pulls in a number of other fixes. * https://github.com/knsv/mermaid/blob/master/CHANGELOG.md * https://github.com/knsv/mermaid/#special-note-regarding-version-82 Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/64601
* | | CE port for Group bulk edit merge requestsEugenia Grieff2019-07-231-0/+4
|/ / | | | | | | | | | | | | Add bulk update sidebar to merge requests template Add js to toggle sidebar Fix bulk update button in issues template Add specs for merge requests in bulk update service
* | Merge branch '6544-remove-scss-diff-ce' into 'master'Phil Hughes2019-07-232-0/+9
|\ \ | | | | | | | | | | | | Resolve difference in app/assets/stylesheets/application.scss See merge request gitlab-org/gitlab-ce!31007
| * | Resolve difference in app/assets/stylesheets/application.scss6544-remove-scss-diff-ceLukas Eipert2019-07-222-0/+9
| | |
* | | Merge branch 'leipert-resolve-ee-diff' into 'master'Phil Hughes2019-07-231-0/+1
|\ \ \ | | | | | | | | | | | | | | | | Port common class only used in EE See merge request gitlab-org/gitlab-ce!31008
| * | | Port common class only used in EEleipert-resolve-ee-diffLukas Eipert2019-07-221-0/+1
| |/ /
* | | hoverable area on collapsed sidebar iconsMichel Engelen2019-07-232-20/+32
|/ /
* | Add ability to embed metricsTristan Read2019-07-2211-50/+202
| | | | | | | | See https://gitlab.com/gitlab-org/gitlab-ce/issues/30423