stable

Clone or download

Read-only

request #12134 Upgrade prettier and bulk-format all javascript

How to test: - run the following command at tuleap root: prettier --config .prettierrc --ignore-path .eslintignore --write \ "./**/*.js" This should yield no diff with this patch. Change-Id: Ib989bb6c9e43738a692fb37276810bb2aab8ca68

Modified Files

Name
M .eslintignore +3 −3 Go to diff View file
M gulpfile.js +127 −132 Go to diff View file
M package-lock.json +3 −3 Go to diff View file
M package.json +1 −1 Go to diff View file
M plugins/admindelegation/www/scripts/admindelegation.js +16 −13 Go to diff View file
M plugins/admindelegation/www/scripts/webpack.config.js +7 −11 Go to diff View file
M plugins/agiledashboard/www/js/burnup-chart/src/burnup-chart-drawer.js +94 −105 Go to diff View file
M plugins/agiledashboard/www/js/burnup-chart/src/burnup-chart.js +28 −26 Go to diff View file
M plugins/agiledashboard/www/js/burnup-chart/src/chart-data-service.js +4 −7 Go to diff View file
M plugins/agiledashboard/www/js/burnup-chart/src/gettext-provider.js +4 −4 Go to diff View file
M plugins/agiledashboard/www/js/card-fields/card-computed-field/card-computed-field-directive.js +6 −6 Go to diff View file
M plugins/agiledashboard/www/js/card-fields/card-fields-controller.js +2 −6 Go to diff View file
M plugins/agiledashboard/www/js/card-fields/card-fields-directive.js +8 −8 Go to diff View file
M plugins/agiledashboard/www/js/card-fields/card-fields-service.js +58 −45 Go to diff View file
M plugins/agiledashboard/www/js/card-fields/card-text-field/card-text-field-directive.js +10 −12 Go to diff View file
M plugins/agiledashboard/www/js/card-fields/highlight-filter.js +9 −11 Go to diff View file
M plugins/agiledashboard/www/js/card-fields/highlight-filter.spec.js +43 −32 Go to diff View file
M plugins/agiledashboard/www/js/card-fields/index.js +18 −18 Go to diff View file
M plugins/agiledashboard/www/js/card-fields/index.spec.js +1 −1 Go to diff View file
M plugins/agiledashboard/www/js/card-fields/tuleap-card-link-directive.js +5 −5 Go to diff View file
M plugins/agiledashboard/www/js/card-fields/tuleap-simple-field-directive.js +4 −4 Go to diff View file
M plugins/agiledashboard/www/js/cumulative-flow-diagram/cumulative-chart-factory.js +310 −208 Go to diff View file
M plugins/agiledashboard/www/js/cumulative-flow-diagram/cumulative-chart.js +26 −26 Go to diff View file
M plugins/agiledashboard/www/js/cumulative-flow-diagram/index.js +1 −1 Go to diff View file
M plugins/agiledashboard/www/js/display-angular-feedback.js +4 −4 Go to diff View file
M plugins/agiledashboard/www/js/home.js +3 −3 Go to diff View file
M plugins/agiledashboard/www/js/kanban/gulpfile.js +20 −18 Go to diff View file
M plugins/agiledashboard/www/js/kanban/karma.conf.js +12 −12 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/add-in-place/add-in-place-controller.js +15 −23 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/add-in-place/add-in-place-directive.js +9 −9 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/add-to-dashboard/add-to-dashboard-controller.js +7 −13 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/add-to-dashboard/add-to-dashboard-directive.js +7 −7 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/app-config.js +4 −10 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/app-kanban-controller.js +105 −134 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/app-kanban-controller.spec.js +148 −191 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/app-main-controller.js +8 −8 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/app.js +92 −92 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/app.spec.js +17 −17 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/column-collection-service.js +39 −39 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/column-collection-service.spec.js +26 −43 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/dropped-service.js +32 −42 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/dropped-service.spec.js +36 −62 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/edit-kanban/edit-kanban-autofocus-directive.js +3 −3 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/edit-kanban/edit-kanban-controller.js +126 −105 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/edit-kanban/edit-kanban-controller.spec.js +23 −19 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/error-modal/error-controller.js +4 −4 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/error-modal/error-modal.js +5 −8 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/error-modal/rest-error-service.js +6 −6 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/error-modal/rest-error-service.spec.js +8 −11 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/esc-key/esc-key-directive.js +3 −3 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/filter-tracker-report/filter-tracker-report-controller.js +13 −10 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/filter-tracker-report/filter-tracker-report-controller.spec.js +36 −37 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/filter-tracker-report/filter-tracker-report-directive.js +7 −7 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/filter-tracker-report/filter-tracker-report-service.js +25 −19 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/filter-tracker-report/filter-tracker-report-service.spec.js +242 −222 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/filter-value.js +1 −1 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/go-to-kanban/go-to-kanban-controller.js +2 −6 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/go-to-kanban/go-to-kanban-directive.js +7 −7 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/in-properties-filter/in-properties-filter.js +46 −44 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/in-properties-filter/in-properties-filter.spec.js +398 −251 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/jwt/jwt-service.js +6 −12 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/jwt/jwt.js +4 −7 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban-column/column-wip-header/column-wip-header-controller.js +20 −14 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban-column/column-wip-header/column-wip-header-directive.js +9 −9 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban-column/kanban-column-controller.js +34 −39 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban-column/kanban-column-controller.spec.js +43 −54 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban-column/kanban-column-directive.js +6 −6 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban-column/kanban-column-identifier.js +2 −2 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban-column/kanban-column-service.js +23 −39 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban-column/kanban-column-service.spec.js +174 −327 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban-directive.js +7 −7 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban-filtered-updated-alert/kanban-filtered-updated-alert-controller.js +2 −8 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban-filtered-updated-alert/kanban-filtered-updated-alert-directive.js +7 −7 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban-filtered-updated-alert/kanban-filtered-updated-alert-service.js +6 −2 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban-item/kanban-item-controller.js +2 −6 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban-item/kanban-item-directive.js +7 −7 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban-item/kanban-item-rest-service.js +14 −18 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban-item/kanban-item-rest-service.spec.js +28 −31 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban-item/kanban-item.js +10 −14 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban-item/time-info/time-info-component.js +13 −13 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban-service.js +91 −102 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban-service.spec.js +257 −259 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/reports-modal/diagram-directive.js +53 −38 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/reports-modal/diagram-rest-service.js +13 −25 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/reports-modal/diagram-rest-service.spec.js +30 −35 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/reports-modal/reports-modal-controller.js +45 −36 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/reports-modal/reports-modal-controller.spec.js +47 −42 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/resize-directive.js +5 −5 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/shared-properties/shared-properties-service.js +99 −41 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/shared-properties/shared-properties.js +3 −4 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/socket/socket-config.js +5 −9 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/socket/socket-factory.js +9 −13 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/socket/socket-service.js +64 −59 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/socket/socket.js +13 −17 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/user-preferences/user-preferences-service.js +4 −5 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/user-preferences/user-preferences.js +3 −4 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/uuid-generator/uuid-generator-service.js +22 −9 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/uuid-generator/uuid-generator.js +3 −4 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/wip-popover/wip-popover-directive.js +29 −18 Go to diff View file
M plugins/agiledashboard/www/js/permissions-per-group/src/gettext-provider.js +4 −4 Go to diff View file
M plugins/agiledashboard/www/js/permissions-per-group/src/index.js +6 −6 Go to diff View file
M plugins/agiledashboard/www/js/permissions-per-group/src/rest-querier.js +4 −6 Go to diff View file
M plugins/agiledashboard/www/js/planning-admin.js +3 −3 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/gulpfile.js +20 −18 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/karma.conf.js +10 −10 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/animator/animator.js +4 −5 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/animator/item-animator-service.js +1 −1 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/app-config.js +2 −8 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/app.js +50 −50 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/app.spec.js +17 −17 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/backlog-filter-terms.js +1 −1 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/backlog-item-collection/backlog-item-collection-service.js +14 −17 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/backlog-item-collection/backlog-item-collection-service.spec.js +21 −23 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/backlog-item-collection/backlog-item-collection.js +7 −10 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/backlog-item-rest/backlog-item-factory.js +17 −17 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/backlog-item-rest/backlog-item-factory.spec.js +24 −27 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/backlog-item-rest/backlog-item-rest.js +7 −9 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/backlog-item-rest/backlog-item-service.js +53 −43 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/backlog-item-rest/backlog-item-service.spec.js +29 −47 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/backlog-item-selected/backlog-item-select-directive.js +19 −20 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/backlog-item-selected/backlog-item-selected-bar-controller.js +13 −15 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/backlog-item-selected/backlog-item-selected-bar-directive.js +7 −7 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/backlog-item-selected/backlog-item-selected-service.js +15 −15 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/backlog-item-selected/backlog-item-selected.js +9 −10 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/backlog-item/backlog-item-controller.js +160 −125 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/backlog-item/backlog-item-controller.spec.js +290 −209 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/backlog-item/backlog-item-details/backlog-item-details-controller.js +29 −29 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/backlog-item/backlog-item-details/backlog-item-details-controller.spec.js +31 −35 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/backlog-item/backlog-item-details/backlog-item-details-directive.js +11 −11 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/backlog-item/backlog-item-details/backlog-item-details.js +16 −16 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/backlog-item/backlog-item-directive.js +7 −7 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/backlog-item/backlog-item.js +20 −20 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/backlog-rest/backlog-rest.js +7 −10 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/backlog-rest/backlog-service.js +46 −39 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/backlog-rest/backlog-service.spec.js +70 −138 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/backlog/backlog-controller.js +164 −112 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/backlog/backlog-controller.spec.js +288 −227 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/backlog/backlog-directive.js +7 −7 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/backlog/backlog.js +32 −32 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/drop/drop.js +8 −12 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/drop/dropped-service.js +116 −45 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/drop/dropped-service.spec.js +106 −50 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/edit-item/edit-item-service.js +4 −4 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/edit-item/edit-item.js +8 −12 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/in-properties/in-properties-filter.js +48 −47 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/in-properties/in-properties-filter.spec.js +195 −223 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/in-properties/in-properties.js +6 −8 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/infinite-scroll/infinite-scroll-directive.js +6 −6 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/infinite-scroll/infinite-scroll.js +5 −6 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/item-progress/item-progress-component.js +4 −4 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/item-progress/item-progress-controller.js +8 −7 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/item-progress/item-progress-controller.spec.js +18 −22 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/main-controller.js +4 −14 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/milestone-collection/milestone-collection-service.js +20 −19 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/milestone-collection/milestone-collection-service.spec.js +50 −81 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/milestone-collection/milestone-collection.js +7 −10 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/milestone-rest/milestone-rest.js +7 −10 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/milestone-rest/milestone-service.js +130 −96 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/milestone-rest/milestone-service.spec.js +44 −50 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/milestone/milestone-controller.js +110 −79 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/milestone/milestone-controller.spec.js +165 −115 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/milestone/milestone-directive.js +8 −8 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/milestone/milestone.js +10 −16 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/open-tlp-dropdown-directive.js +2 −2 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/planning-controller.js +152 −98 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/planning-controller.spec.js +158 −125 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/planning-directive.js +7 −7 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/project/project-service.js +38 −34 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/project/project.js +5 −8 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/rest-error/rest-error-service.js +3 −3 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/rest-error/rest-error.js +3 −6 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/shared-properties/shared-properties-service.js +18 −18 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/shared-properties/shared-properties.js +5 −6 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/success-message-component.js +9 −10 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/user-preferences/user-preferences-service.js +6 −10 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/user-preferences/user-preferences.js +6 −8 Go to diff View file
M plugins/agiledashboard/www/js/scrum-header.js +3 −3 Go to diff View file
M plugins/agiledashboard/www/js/webpack.config.js +21 −25 Go to diff View file
M plugins/artifactsfolders/www/scripts/rollup.js +94 −69 Go to diff View file
M plugins/bugzilla_reference/www/scripts/bugzilla-reference.js +15 −11 Go to diff View file
M plugins/cardwall/site-content/en_US/script_locale.js +30 −29 Go to diff View file
M plugins/cardwall/site-content/fr_FR/script_locale.js +30 −29 Go to diff View file
M plugins/cardwall/www/js/CardsEditInPlace.js +27 −26 Go to diff View file
M plugins/cardwall/www/js/ajaxInPlaceEditorExtensions.js +38 −37 Go to diff View file
M plugins/cardwall/www/js/cardwall.js +475 −447 Go to diff View file
M plugins/cardwall/www/js/custom-mapping.js +12 −9 Go to diff View file
M plugins/cardwall/www/js/fullscreen.js +73 −56 Go to diff View file
M plugins/cardwall/www/js/script.js +151 −130 Go to diff View file
M plugins/create_test_env/scripts/call-me-back-admin.js +11 −11 Go to diff View file
M plugins/create_test_env/scripts/call-me-back-burning-parrot/src/index.js +8 −8 Go to diff View file
M plugins/create_test_env/scripts/call-me-back-flaming-parrot/src/index.js +10 −11 Go to diff View file
M plugins/create_test_env/scripts/webpack.config.js +11 −25 Go to diff View file
M plugins/crosstracker/www/scripts/cross-tracker/src/app/backend-cross-tracker-report.js +5 −5 Go to diff View file
M plugins/crosstracker/www/scripts/cross-tracker/src/app/gettext-provider.js +4 −4 Go to diff View file
M plugins/crosstracker/www/scripts/cross-tracker/src/app/index.js +16 −14 Go to diff View file
M plugins/crosstracker/www/scripts/cross-tracker/src/app/reading-mode/ReadingMode.spec.js +31 −31 Go to diff View file
M plugins/crosstracker/www/scripts/cross-tracker/src/app/reading-mode/reading-cross-tracker-report.js +3 −3 Go to diff View file
M plugins/crosstracker/www/scripts/cross-tracker/src/app/rest-querier.js +11 −13 Go to diff View file
M plugins/crosstracker/www/scripts/cross-tracker/src/app/user-service.js +5 −9 Go to diff View file
M plugins/crosstracker/www/scripts/cross-tracker/src/app/writing-mode/QueryEditor.spec.js +6 −7 Go to diff View file
M plugins/crosstracker/www/scripts/cross-tracker/src/app/writing-mode/TrackerListWritingMode.spec.js +4 −4 Go to diff View file
M plugins/crosstracker/www/scripts/cross-tracker/src/app/writing-mode/TrackerSelection.spec.js +42 −41 Go to diff View file
M plugins/crosstracker/www/scripts/cross-tracker/src/app/writing-mode/WritingMode.spec.js +42 −38 Go to diff View file
M plugins/crosstracker/www/scripts/cross-tracker/src/app/writing-mode/projects-cache.js +3 −7 Go to diff View file
M plugins/crosstracker/www/scripts/cross-tracker/src/app/writing-mode/tql-configuration.js +27 −32 Go to diff View file
M plugins/crosstracker/www/scripts/cross-tracker/src/app/writing-mode/writing-cross-tracker-report.js +4 −4 Go to diff View file
M plugins/docman/www/scripts/ApprovalTableReminder.js +8 −9 Go to diff View file
M plugins/docman/www/scripts/docman.js +971 −782 Go to diff View file
M plugins/docman/www/scripts/embedded_file.js +8 −10 Go to diff View file
M plugins/docman/www/scripts/folder.js +110 −115 Go to diff View file
M plugins/docman/www/scripts/notifications.js +2 −2 Go to diff View file
M plugins/forumml/www/scripts/forumml.js +30 −30 Go to diff View file
M plugins/frs/www/js/angular/gulpfile.js +31 −30 Go to diff View file
M plugins/frs/www/js/angular/karma.conf.js +8 −11 Go to diff View file
M plugins/frs/www/js/angular/src/app/app-config.js +5 −11 Go to diff View file
M plugins/frs/www/js/angular/src/app/app-controller.js +5 −13 Go to diff View file
M plugins/frs/www/js/angular/src/app/app.js +49 −50 Go to diff View file
M plugins/frs/www/js/angular/src/app/app.spec.js +5 −5 Go to diff View file
M plugins/frs/www/js/angular/src/app/file-download/file-download-controller.js +10 −16 Go to diff View file
M plugins/frs/www/js/angular/src/app/file-download/file-download-controller.spec.js +27 −31 Go to diff View file
M plugins/frs/www/js/angular/src/app/file-download/file-download-directive.js +9 −9 Go to diff View file
M plugins/frs/www/js/angular/src/app/file-download/license-modal/license-modal-controller.js +5 −11 Go to diff View file
M plugins/frs/www/js/angular/src/app/release/files/files-config.js +4 −8 Go to diff View file
M plugins/frs/www/js/angular/src/app/release/files/files-controller.js +2 −6 Go to diff View file
M plugins/frs/www/js/angular/src/app/release/files/files-directive.js +7 −7 Go to diff View file
M plugins/frs/www/js/angular/src/app/release/linked-artifacts/linked-artifacts-config.js +4 −8 Go to diff View file
M plugins/frs/www/js/angular/src/app/release/linked-artifacts/linked-artifacts-controller.js +17 −22 Go to diff View file
M plugins/frs/www/js/angular/src/app/release/linked-artifacts/linked-artifacts-controller.spec.js +59 −43 Go to diff View file
M plugins/frs/www/js/angular/src/app/release/linked-artifacts/linked-artifacts-directive.js +7 −7 Go to diff View file
M plugins/frs/www/js/angular/src/app/release/release-controller.js +11 −21 Go to diff View file
M plugins/frs/www/js/angular/src/app/release/release-controller.spec.js +15 −20 Go to diff View file
M plugins/frs/www/js/angular/src/app/release/release-directive.js +7 −7 Go to diff View file
M plugins/frs/www/js/angular/src/app/release/release-rest-service.js +49 −65 Go to diff View file
M plugins/frs/www/js/angular/src/app/release/release-rest-service.spec.js +56 −36 Go to diff View file
M plugins/frs/www/js/angular/src/app/rest-error-service.js +2 −2 Go to diff View file
M plugins/frs/www/js/angular/src/app/shared-properties-service.js +7 −7 Go to diff View file
M plugins/frs/www/js/angular/webpack.config.js +9 −12 Go to diff View file
M plugins/fulltextsearch/www/scripts/admin-load-project-autocompleter.js +4 −1 Go to diff View file
M plugins/fulltextsearch/www/scripts/full-text-search.js +74 −58 Go to diff View file
M plugins/git/www/scripts/admin-gitolite.js +3 −4 Go to diff View file
M plugins/git/www/scripts/admin-notifications.js +2 −2 Go to diff View file
M plugins/git/www/scripts/clone_url.js +42 −38 Go to diff View file
M plugins/git/www/scripts/git.js +215 −179 Go to diff View file
M plugins/git/www/scripts/mass-update.js +55 −42 Go to diff View file
M plugins/git/www/scripts/modal-add-gerrit-server.js +5 −5 Go to diff View file
M plugins/git/www/scripts/modal-add-mirror.js +6 −6 Go to diff View file
M plugins/git/www/scripts/modal-delete-gerrit-server.js +6 −6 Go to diff View file
M plugins/git/www/scripts/modal-edit-gerrit-server.js +6 −6 Go to diff View file
M plugins/git/www/scripts/modal-mirror-configuration.js +8 −7 Go to diff View file
M plugins/git/www/scripts/permissions-per-group/src/gettext-provider.js +4 −4 Go to diff View file
M plugins/git/www/scripts/permissions-per-group/src/index.js +6 −6 Go to diff View file
M plugins/git/www/scripts/permissions-per-group/src/rest-querier.js +4 −7 Go to diff View file
M plugins/git/www/scripts/permissions.js +94 −82 Go to diff View file
M plugins/git/www/scripts/webhooks.js +22 −21 Go to diff View file
M plugins/graphontrackers/www/dependencies.js +240 −210 Go to diff View file
M plugins/graphontrackersv5/www/dependencies.js +240 −210 Go to diff View file
M plugins/graphontrackersv5/www/scripts/graphs-bar.js +67 −46 Go to diff View file
M plugins/graphontrackersv5/www/scripts/graphs-groupedbar.js +99 −73 Go to diff View file
M plugins/graphontrackersv5/www/scripts/graphs-pie.js +84 −68 Go to diff View file
M plugins/graphontrackersv5/www/scripts/graphs.js +102 −53 Go to diff View file
M plugins/graphontrackersv5/www/scripts/loadGraphs.js +3 −3 Go to diff View file
M plugins/hudson/www/js/form.js +5 −6 Go to diff View file
M plugins/hudson/www/js/hudson_tab.js +1 −1 Go to diff View file
M plugins/hudson_svn/www/scripts/form.js +8 −10 Go to diff View file
M plugins/label/www/scripts/configure-widget/index.js +16 −7 Go to diff View file
M plugins/label/www/scripts/configure-widget/labels-box.js +32 −23 Go to diff View file
M plugins/label/www/scripts/karma.conf.js +8 −10 Go to diff View file
M plugins/label/www/scripts/project-labeled-items/src/LabeledItem.spec.js +7 −7 Go to diff View file
M plugins/label/www/scripts/project-labeled-items/src/LabeledItemsList.spec.js +43 −41 Go to diff View file
M plugins/label/www/scripts/project-labeled-items/src/app.spec.js +7 −7 Go to diff View file
M plugins/label/www/scripts/project-labeled-items/src/index.js +6 −6 Go to diff View file
M plugins/label/www/scripts/project-labeled-items/src/rest-querier.js +6 −8 Go to diff View file
M plugins/label/www/scripts/project-labeled-items/src/rest-querier.spec.js +58 −56 Go to diff View file
M plugins/label/www/scripts/webpack.config.js +10 −20 Go to diff View file
M plugins/ldap/www/scripts/autocomplete-for-select2.js +15 −13 Go to diff View file
M plugins/ldap/www/scripts/project-admin/preview-for-select2.js +67 −37 Go to diff View file
M plugins/ldap/www/scripts/project-admin/project-admin-members.js +27 −26 Go to diff View file
M plugins/ldap/www/scripts/project-admin/project-admin-ugroups.js +24 −23 Go to diff View file
M plugins/ldap/www/scripts/webpack.config.js +8 −10 Go to diff View file
M plugins/openidconnectclient/www/scripts/open-id-connect-client.js +45 −29 Go to diff View file
M plugins/pluginsadministration/www/scripts/pluginsadministration.js +40 −36 Go to diff View file
M plugins/pullrequest/www/scripts/gulpfile.js +31 −30 Go to diff View file
M plugins/pullrequest/www/scripts/karma.conf.js +10 −10 Go to diff View file
M plugins/pullrequest/www/scripts/move-button-back.js +9 −7 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/app-config.js +4 −8 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/app-controller.js +6 −15 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/app.js +91 −93 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/app.spec.js +11 −11 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/button-back/button-back-controller.js +3 −7 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/button-back/button-back-directive.js +7 −7 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/dashboard/dashboard-config.js +4 −8 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/dashboard/dashboard-controller.js +28 −29 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/dashboard/dashboard-controller.spec.js +10 −14 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/dashboard/dashboard-directive.js +7 −7 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/dashboard/pull-request-collection-rest-service.js +40 −53 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/dashboard/pull-request-collection-rest-service.spec.js +104 −73 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/dashboard/pull-request-collection-service.js +38 −31 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/dashboard/pull-request-collection-service.spec.js +74 −71 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/dashboard/pull-request-summary/pull-request-summary-controller.js +6 −14 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/dashboard/pull-request-summary/pull-request-summary-controller.spec.js +19 −23 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/dashboard/pull-request-summary/pull-request-summary-directive.js +8 −8 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/error-modal/error-modal-controller.js +3 −9 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/error-modal/error-modal-service.js +10 −14 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/file-diff/file-diff-config.js +7 −11 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/file-diff/file-diff-controller.js +3 −9 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/file-diff/file-diff-directive.js +62 −49 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/file-diff/file-diff-rest-service.js +18 −24 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/file-diff/inline-comment/inline-comment-directive.js +5 −5 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/files/filepaths-service.js +2 −2 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/files/files-config.js +7 −11 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/files/files-controller.js +20 −23 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/files/files-directive.js +7 −7 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/files/files-rest-service.js +4 −11 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/labels/labels-controller.js +5 −11 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/labels/labels-directive.js +7 −7 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/overview/merge-modal/merge-modal-controller.js +2 −6 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/overview/merge-modal/merge-modal-service.js +5 −9 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/overview/overview-config.js +8 −12 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/overview/overview-controller.js +43 −37 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/overview/overview-directive.js +7 −7 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/overview/timeline/timeline-controller.js +20 −28 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/overview/timeline/timeline-directive.js +7 −7 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/overview/timeline/timeline-rest-service.js +15 −13 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/overview/timeline/timeline-service.js +26 −33 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/overview/timeline/timeline-service.spec.js +122 −105 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/pull-request-refs/pull-request-refs-controller.js +4 −8 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/pull-request-refs/pull-request-refs-controller.spec.js +7 −11 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/pull-request-refs/pull-request-refs.directive.js +8 −8 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/pull-request/header/header-controller.js +9 −12 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/pull-request/header/header-directive.js +6 −6 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/pull-request/pull-request-config.js +4 −8 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/pull-request/pull-request-controller.js +2 −10 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/pull-request/pull-request-controller.spec.js +12 −12 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/pull-request/pull-request-directive.js +7 −7 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/pull-request/pull-request-rest-service.js +20 −21 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/pull-request/pull-request-rest-service.spec.js +26 −24 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/pull-request/pull-request-service.js +18 −12 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/pull-request/pull-request-service.spec.js +7 −9 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/resize/resize-directive.js +9 −15 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/resize/resize.js +3 −5 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/shared-properties/shared-properties-service.js +7 −7 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/shared-properties/shared-properties.js +5 −5 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/tooltip-service.js +3 −7 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/tuleap-username/tuleap-username-directive.js +5 −5 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/user-rest-service.js +13 −19 Go to diff View file
M plugins/pullrequest/www/scripts/src/app/user-rest-service.spec.js +19 −24 Go to diff View file
M plugins/pullrequest/www/scripts/webpack.config.js +12 −18 Go to diff View file
M plugins/statistics/www/js/admin.js +28 −34 Go to diff View file
M plugins/svn/site-content/en_US/script_locale.js +3 −3 Go to diff View file
M plugins/svn/site-content/fr_FR/script_locale.js +3 −3 Go to diff View file
M plugins/svn/www/scripts/permissions-per-group/src/gettext-provider.js +4 −4 Go to diff View file
M plugins/svn/www/scripts/permissions-per-group/src/index.js +6 −6 Go to diff View file
M plugins/svn/www/scripts/permissions-per-group/src/rest-querier.js +4 −6 Go to diff View file
M plugins/svn/www/scripts/svn-admin-notifications-popover.js +31 −26 Go to diff View file
M plugins/svn/www/scripts/svn-admin-notifications.js +65 −60 Go to diff View file
M plugins/svn/www/scripts/svn.js +26 −21 Go to diff View file
M plugins/svn/www/scripts/webpack.config.js +7 −12 Go to diff View file
M plugins/timetracking/www/scripts/karma.conf.js +8 −10 Go to diff View file
M plugins/timetracking/www/scripts/personal-timetracking-widget/src/gettext-provider.js +4 −4 Go to diff View file
M plugins/timetracking/www/scripts/webpack.config.js +11 −19 Go to diff View file
M plugins/tracker/grammar/generate_parser.js +20 −17 Go to diff View file
M plugins/tracker/www/scripts/CopyArtifact.js +5 −3 Go to diff View file
M plugins/tracker/www/scripts/FixAggregatesHeaderHeight.js +15 −14 Go to diff View file
M plugins/tracker/www/scripts/ReorderColumns.js +91 −69 Go to diff View file
M plugins/tracker/www/scripts/SubmissionKeeper.js +23 −22 Go to diff View file
M plugins/tracker/www/scripts/TrackerAdminFieldWorkflow.js +105 −54 Go to diff View file
M plugins/tracker/www/scripts/TrackerAdminFields.js +171 −163 Go to diff View file
M plugins/tracker/www/scripts/TrackerArtifact.js +244 −200 Go to diff View file
M plugins/tracker/www/scripts/TrackerArtifactEditionSwitcher.js +397 −314 Go to diff View file
M plugins/tracker/www/scripts/TrackerArtifactEmailActions.js +39 −27 Go to diff View file
M plugins/tracker/www/scripts/TrackerArtifactLink.js +664 −443 Go to diff View file
M plugins/tracker/www/scripts/TrackerBinds.js +95 −76 Go to diff View file
M plugins/tracker/www/scripts/TrackerCheckUgroupConsistency.js +45 −36 Go to diff View file
M plugins/tracker/www/scripts/TrackerCollapseFieldset.js +17 −15 Go to diff View file
M plugins/tracker/www/scripts/TrackerCreate.js +26 −20 Go to diff View file
M plugins/tracker/www/scripts/TrackerDateReminderForms.js +8 −10 Go to diff View file
M plugins/tracker/www/scripts/TrackerEmailCopyPaste.js +48 −41 Go to diff View file
M plugins/tracker/www/scripts/TrackerFieldDependencies.js +121 −102 Go to diff View file
M plugins/tracker/www/scripts/TrackerFormElementFieldPermissions.js +41 −36 Go to diff View file
M plugins/tracker/www/scripts/TrackerReports.js +443 −333 Go to diff View file
M plugins/tracker/www/scripts/TrackerReportsSaveAsModal.js +6 −6 Go to diff View file
M plugins/tracker/www/scripts/TrackerRichTextEditor.js +17 −22 Go to diff View file
M plugins/tracker/www/scripts/TrackerSettings.js +14 −8 Go to diff View file
M plugins/tracker/www/scripts/TrackerTemplateSelector.js +57 −38 Go to diff View file
M plugins/tracker/www/scripts/TrackerTextboxLists.js +20 −13 Go to diff View file
M plugins/tracker/www/scripts/TrackerTriggers.js +197 −165 Go to diff View file
M plugins/tracker/www/scripts/admin-nature.js +34 −24 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/index.js +1 −1 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/field-dependencies-service.js +14 −9 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/field-dependencies-service.spec.js +43 −98 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/index.spec.js +25 −25 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/modal-creation-mode-state.js +1 −4 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/model/awkward-creation-fields-constant.js +9 −9 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/model/field-values-service.js +73 −73 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/model/field-values-service.spec.js +136 −138 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/model/form-tree-builder-service.js +3 −3 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/model/form-tree-builder-service.spec.js +31 −27 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/model/model.js +16 −16 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/model/structural-fields-constant.js +1 −7 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/model/tracker-transformer-service.js +56 −53 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/model/tracker-transformer-service.spec.js +281 −210 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/model/workflow-service.js +5 −4 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/model/workflow-service.spec.js +9 −17 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/quota-display/quota-display-controller.js +2 −6 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/quota-display/quota-display-directive.js +5 −5 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/quota-display/quota-display.js +5 −6 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/rest/rest-error-state.js +8 −9 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/rest/rest-service.js +30 −40 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/rest/rest-service.spec.js +96 −95 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/rest/rest.js +6 −5 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-controller.js +77 −86 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-controller.spec.js +72 −93 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/computed-field/computed-field-controller.js +2 −2 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/computed-field/computed-field-controller.spec.js +7 −9 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/computed-field/computed-field-directive.js +11 −11 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/computed-field/computed-field-validate-service.js +6 −6 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/computed-field/computed-field-validate-service.spec.js +21 −23 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/computed-field/computed-field.js +10 −12 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/date-field/date-field-controller.js +12 −14 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/date-field/date-field-directive.js +11 −11 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/date-field/date-field-initializer.js +6 −13 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/date-field/date-field.js +5 −6 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/fields.js +9 −10 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/file-field/file-field-controller.spec.js +16 −12 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/file-field/file-field-detector.js +3 −6 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/file-field/file-field-detector.spec.js +14 −17 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/file-field/file-field-directive.js +11 −11 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/file-field/file-upload-rules-state.js +5 −8 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/file-field/file-upload-rules-state.spec.js +11 −21 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/link-field/link-field-controller.js +28 −36 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/link-field/link-field-controller.spec.js +37 −44 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/link-field/link-field-directive.js +15 −15 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/link-field/link-field-initializer.js +5 −11 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/link-field/link-field-service.js +6 −8 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/link-field/link-field-service.spec.js +6 −6 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/link-field/link-field.js +6 −8 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/open-list-field/open-list-field-initializer.js +5 −19 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/open-list-field/open-list-field-validate-service.js +13 −11 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/open-list-field/open-list-field-validate-service.spec.js +90 −85 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/open-list-field/open-list-field.js +12 −14 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/open-list-field/static-open-list-field-controller.js +28 −36 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/open-list-field/static-open-list-field-controller.spec.js +54 −57 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/open-list-field/static-open-list-field-directive.js +11 −11 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/open-list-field/ugroups-open-list-field-controller.js +11 −13 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/open-list-field/ugroups-open-list-field-controller.spec.js +19 −20 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/open-list-field/ugroups-open-list-field-directive.js +11 −11 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/open-list-field/users-open-list-field-controller.js +41 −54 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/open-list-field/users-open-list-field-controller.spec.js +220 −203 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/open-list-field/users-open-list-field-directive.js +11 −11 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/permission-field/permission-field-controller.js +2 −2 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/permission-field/permission-field-controller.spec.js +28 −23 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/permission-field/permission-field-directive.js +11 −11 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/permission-field/permission-field-validate-service.js +2 −2 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/permission-field/permission-field-validate-service.spec.js +10 −12 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/permission-field/permission-field.js +9 −10 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-service.js +153 −111 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal-service.spec.js +140 −96 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-artifact-modal.js +35 −34 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-focus/focus-on-click-directive.js +9 −13 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-focus/focus.js +4 −6 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-highlight/highlight-directive.js +20 −21 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-highlight/highlight-directive.spec.js +12 −17 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/tuleap-highlight/highlight.js +4 −6 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/validate-service.js +38 −32 Go to diff View file
M plugins/tracker/www/scripts/angular-artifact-modal/src/validate-service.spec.js +42 −43 Go to diff View file
M plugins/tracker/www/scripts/artifactChildren.js +117 −102 Go to diff View file
M plugins/tracker/www/scripts/burndown-chart/src/burndown-chart-drawer.js +87 −100 Go to diff View file
M plugins/tracker/www/scripts/burndown-chart/src/burndown-chart.js +24 −23 Go to diff View file
M plugins/tracker/www/scripts/burndown-chart/src/chart-data-service.js +4 −7 Go to diff View file
M plugins/tracker/www/scripts/burndown-chart/src/gettext-provider.js +4 −4 Go to diff View file
M plugins/tracker/www/scripts/colorpicker/index.js +1 −1 Go to diff View file
M plugins/tracker/www/scripts/colorpicker/new-color-palette.js +8 −33 Go to diff View file
M plugins/tracker/www/scripts/colorpicker/old-color-palette.js +288 −16 Go to diff View file
M plugins/tracker/www/scripts/global-admin.js +3 −3 Go to diff View file
M plugins/tracker/www/scripts/gulpfile.js +23 −21 Go to diff View file
M plugins/tracker/www/scripts/karma.conf.js +9 −9 Go to diff View file
M plugins/tracker/www/scripts/load-artifactChildren.js +23 −24 Go to diff View file
M plugins/tracker/www/scripts/modal-in-place.js +246 −196 Go to diff View file
M plugins/tracker/www/scripts/permissions-per-group/src/gettext-provider.js +4 −4 Go to diff View file
M plugins/tracker/www/scripts/permissions-per-group/src/index.js +6 −6 Go to diff View file
M plugins/tracker/www/scripts/permissions-per-group/src/rest-querier.js +4 −6 Go to diff View file
M plugins/tracker/www/scripts/report/TQL-CodeMirror/allowed-field-inserter.js +10 −13 Go to diff View file
M plugins/tracker/www/scripts/report/TQL-CodeMirror/autocompleter.js +10 −9 Go to diff View file
M plugins/tracker/www/scripts/report/TQL-CodeMirror/builder.js +14 −21 Go to diff View file
M plugins/tracker/www/scripts/report/TQL-CodeMirror/configuration.js +13 −16 Go to diff View file
M plugins/tracker/www/scripts/report/expert-mode.js +40 −41 Go to diff View file
M plugins/tracker/www/scripts/report/index.js +2 −2 Go to diff View file
M plugins/tracker/www/scripts/tracker-admin-notifications-popover.js +16 −15 Go to diff View file
M plugins/tracker/www/scripts/tracker-admin-notifications.js +62 −50 Go to diff View file
M plugins/tracker/www/scripts/tracker-report-nature-column.js +61 −42 Go to diff View file
M plugins/tracker_encryption/www/scripts/encrypted_field.js +14 −14 Go to diff View file
M plugins/tracker_encryption/www/scripts/update_tracker_key_modal.js +4 −4 Go to diff View file
M plugins/userlog/www/scripts/user-logging-date-picker.js +4 −4 Go to diff View file
M plugins/velocity/www/scripts/velocity-chart/src/gettext-provider.js +4 −4 Go to diff View file
M plugins/velocity/www/scripts/velocity-chart/src/index.js +15 −15 Go to diff View file
M plugins/velocity/www/scripts/velocity-chart/src/velocity-chart-drawer.js +47 −64 Go to diff View file
M plugins/velocity/www/scripts/webpack.config.js +8 −13 Go to diff View file
M src/www/admin/usergroup.js +25 −26 Go to diff View file
M src/www/file/scripts/frs.js +421 −297 Go to diff View file
M src/www/scripts/BurningParrot/index.js +9 −9 Go to diff View file
M src/www/scripts/BurningParrot/motd.js +7 −7 Go to diff View file
M src/www/scripts/BurningParrot/navbar-dropdown-projects.js +43 −25 Go to diff View file
M src/www/scripts/BurningParrot/navbar-dropdown.js +19 −17 Go to diff View file
M src/www/scripts/BurningParrot/scrollbar.js +3 −3 Go to diff View file
M src/www/scripts/BurningParrot/sidebar.js +16 −15 Go to diff View file
M src/www/scripts/FlamingParrot/index.js +5 −5 Go to diff View file
M src/www/scripts/FlamingParrot/keyboard-navigation.js +62 −59 Go to diff View file
M src/www/scripts/FlamingParrot/motd.js +8 −6 Go to diff View file
M src/www/scripts/FlamingParrot/navbar.js +16 −14 Go to diff View file
M src/www/scripts/FlamingParrot/sidebar.js +68 −56 Go to diff View file
M src/www/scripts/admin/generate-pie-charts.js +24 −20 Go to diff View file
M src/www/scripts/admin/massmail.js +38 −38 Go to diff View file
M src/www/scripts/admin/most-recent-logins.js +3 −3 Go to diff View file
M src/www/scripts/admin/password-policy.js +6 −4 Go to diff View file
M src/www/scripts/admin/pending-users.js +2 −3 Go to diff View file
M src/www/scripts/admin/permission-delegation.js +47 −37 Go to diff View file
M src/www/scripts/admin/project-configuration.js +6 −6 Go to diff View file
M src/www/scripts/admin/project-history.js +15 −15 Go to diff View file
M src/www/scripts/admin/project-list.js +5 −3 Go to diff View file
M src/www/scripts/admin/statistics-chart.js +171 −144 Go to diff View file
M src/www/scripts/admin/system-events-admin-homepage.js +8 −5 Go to diff View file
M src/www/scripts/admin/system-events-notifications.js +8 −6 Go to diff View file
M src/www/scripts/admin/system-events.js +9 −9 Go to diff View file
M src/www/scripts/admin/trackers-pending-removal.js +4 −4 Go to diff View file
M src/www/scripts/admin/userdetails.js +9 −7 Go to diff View file
M src/www/scripts/autocomplete.js +40 −35 Go to diff View file
M src/www/scripts/blocks.js +22 −21 Go to diff View file
M src/www/scripts/charts-builders/bar-chart-scales-factory.js +4 −16 Go to diff View file
M src/www/scripts/charts-builders/chart-badge-legend-generator.js +22 −23 Go to diff View file
M src/www/scripts/charts-builders/chart-column-factory.js +9 −13 Go to diff View file
M src/www/scripts/charts-builders/chart-content-legend-generator.js +21 −20 Go to diff View file
M src/www/scripts/charts-builders/chart-dates-service.js +18 −26 Go to diff View file
M src/www/scripts/charts-builders/chart-layout-builder.js +22 −46 Go to diff View file
M src/www/scripts/charts-builders/chart-layout-service.js +5 −18 Go to diff View file
M src/www/scripts/charts-builders/chart-legend-service.js +3 −4 Go to diff View file
M src/www/scripts/charts-builders/chart-lines-service.js +24 −44 Go to diff View file
M src/www/scripts/charts-builders/chart-text-legend-generator.js +6 −10 Go to diff View file
M src/www/scripts/charts-builders/chart-tooltip-factory.js +48 −44 Go to diff View file
M src/www/scripts/charts-builders/chart-truncation-service.js +5 −5 Go to diff View file
M src/www/scripts/charts-builders/gettext-provider.js +4 −4 Go to diff View file
M src/www/scripts/charts-builders/line-chart-scales-factory.js +4 −16 Go to diff View file
M src/www/scripts/charts-builders/time-scale-labels-formatter.js +23 −32 Go to diff View file
M src/www/scripts/check_pw.js +25 −27 Go to diff View file
M src/www/scripts/clamp.js +109 −5 Go to diff View file
M src/www/scripts/codendi/CreateProject.js +13 −7 Go to diff View file
M src/www/scripts/codendi/DropDownPanel.js +72 −65 Go to diff View file
M src/www/scripts/codendi/ProjectHistory.js +15 −11 Go to diff View file
M src/www/scripts/codendi/RichTextEditor.js +120 −114 Go to diff View file
M src/www/scripts/codendi/Toggler.js +44 −45 Go to diff View file
M src/www/scripts/codendi/Tooltip-loader.js +18 −20 Go to diff View file
M src/www/scripts/codendi/Tooltip.js +58 −62 Go to diff View file
M src/www/scripts/codendi/Tracker.js +21 −13 Go to diff View file
M src/www/scripts/codendi/TreeNode.js +35 −34 Go to diff View file
M src/www/scripts/codendi/common.js +21 −14 Go to diff View file
M src/www/scripts/codendi/cross_references.js +100 −77 Go to diff View file
M src/www/scripts/codendi/debug_reserved_names.js +90 −79 Go to diff View file
M src/www/scripts/codendi/feedback.js +23 −16 Go to diff View file
M src/www/scripts/dashboards/dashboard-async-widget.js +7 −9 Go to diff View file
M src/www/scripts/dashboards/dashboard-drag-drop.js +66 −56 Go to diff View file
M src/www/scripts/dashboards/dashboard-dropdowns.js +44 −40 Go to diff View file
M src/www/scripts/dashboards/dashboard-layout.js +25 −28 Go to diff View file
M src/www/scripts/dashboards/dashboard-load-togglers.js +2 −2 Go to diff View file
M src/www/scripts/dashboards/dashboard-minimize.js +3 −3 Go to diff View file
M src/www/scripts/dashboards/dashboard-modals.js +84 −68 Go to diff View file
M src/www/scripts/dashboards/dashboard.js +8 −8 Go to diff View file
M src/www/scripts/dashboards/widgets/project-heartbeat/index.js +2 −2 Go to diff View file
M src/www/scripts/dashboards/widgets/project-heartbeat/project-heartbeat.js +44 −27 Go to diff View file
M src/www/scripts/fieldDependencies.js +413 −240 Go to diff View file
M src/www/scripts/fieldEditor.js +73 −58 Go to diff View file
M src/www/scripts/filterlist.js +309 −310 Go to diff View file
M src/www/scripts/frs/permissions-per-group/gettext-provider.js +4 −4 Go to diff View file
M src/www/scripts/frs/permissions-per-group/index.js +7 −7 Go to diff View file
M src/www/scripts/frs/permissions-per-group/rest-querier.js +3 −5 Go to diff View file
M src/www/scripts/labels/index.js +3 −3 Go to diff View file
M src/www/scripts/labels/labels-box.js +109 −92 Go to diff View file
M src/www/scripts/labels/project-admin/project-admin-labels.js +34 −28 Go to diff View file
M src/www/scripts/navbar-history/history-items-builder.js +8 −8 Go to diff View file
M src/www/scripts/navbar-history/index-burningparrot.js +6 −4 Go to diff View file
M src/www/scripts/navbar-history/index-flamingparrot.js +5 −5 Go to diff View file
M src/www/scripts/navbar-history/navbar-history-controller.js +43 −33 Go to diff View file
M src/www/scripts/news/permissions-per-group/gettext-provider.js +4 −4 Go to diff View file
M src/www/scripts/news/permissions-per-group/index.js +7 −7 Go to diff View file
M src/www/scripts/news/permissions-per-group/rest-querier.js +3 −6 Go to diff View file
M src/www/scripts/project/admin/index.js +5 −5 Go to diff View file
M src/www/scripts/project/admin/members-import/project-admin-members-import.js +49 −48 Go to diff View file
M src/www/scripts/project/admin/project-admin-members.js +39 −32 Go to diff View file
M src/www/scripts/project/admin/project-admin-ugroups.js +87 −60 Go to diff View file
M src/www/scripts/project/admin/project-admin.js +14 −14 Go to diff View file
M src/www/scripts/project/admin/services.js +11 −9 Go to diff View file
M src/www/scripts/register.js +26 −15 Go to diff View file
M src/www/scripts/trackerv3_artifact.js +8 −11 Go to diff View file
M src/www/scripts/tuleap/account-maintenance.js +100 −77 Go to diff View file
M src/www/scripts/tuleap/admin-access-mode.js +20 −22 Go to diff View file
M src/www/scripts/tuleap/admin-description-fields.js +26 −17 Go to diff View file
M src/www/scripts/tuleap/admin-homepage.js +8 −10 Go to diff View file
M src/www/scripts/tuleap/admin-project-creation-moderation.js +4 −6 Go to diff View file
M src/www/scripts/tuleap/autocomplete-for-select2.js +41 −34 Go to diff View file
M src/www/scripts/tuleap/browser-compatibility.js +12 −11 Go to diff View file
M src/www/scripts/tuleap/datetimepicker.js +10 −11 Go to diff View file
M src/www/scripts/tuleap/escaper.js +8 −8 Go to diff View file
M src/www/scripts/tuleap/get-style-class-property.js +14 −10 Go to diff View file
M src/www/scripts/tuleap/is-at-top.js +4 −6 Go to diff View file
M src/www/scripts/tuleap/listFilter.js +19 −21 Go to diff View file
M src/www/scripts/tuleap/mailchecker.js +19 −19 Go to diff View file
M src/www/scripts/tuleap/manage-allowed-projects-on-resource.js +27 −25 Go to diff View file
M src/www/scripts/tuleap/massmail_initialize_ckeditor.js +6 −6 Go to diff View file
M src/www/scripts/tuleap/massmail_project_members.js +6 −6 Go to diff View file
M src/www/scripts/tuleap/project-history.js +8 −10 Go to diff View file
M src/www/scripts/tuleap/project-privacy-tooltip.js +6 −7 Go to diff View file
M src/www/scripts/tuleap/search.js +91 −82 Go to diff View file
M src/www/scripts/tuleap/svn.js +121 −104 Go to diff View file
M src/www/scripts/tuleap/textarea_rte.js +39 −35 Go to diff View file
M src/www/scripts/tuleap/timezone.js +6 −4 Go to diff View file
M src/www/scripts/tuleap/toggler.js +40 −32 Go to diff View file
M src/www/scripts/tuleap/trovecat.js +48 −37 Go to diff View file
M src/www/scripts/tuleap/tuleap-ckeditor-toolbar.js +5 −5 Go to diff View file
M src/www/scripts/tuleap/tuleap-mention.js +9 −8 Go to diff View file
M src/www/scripts/tuleap/tuleap-modal.js +57 −41 Go to diff View file
M src/www/scripts/tuleap/tuleap-standard-homepage.js +7 −9 Go to diff View file
M src/www/scripts/tuleap/tuleap-tours.js +11 −11 Go to diff View file
M src/www/scripts/tuleap/user-and-ugroup-autocompleter.js +35 −27 Go to diff View file
M src/www/scripts/user.js +8 −5 Go to diff View file
M src/www/scripts/viewportchecker/viewport-checker.js +15 −14 Go to diff View file
M src/www/scripts/webpack.config.js +39 −55 Go to diff View file
M src/www/scripts/widgets/contact-modal.js +7 −6 Go to diff View file
M src/www/soap/wsdl-viewer.js +24 −26 Go to diff View file
M src/www/themes/common/tlp/angular-tlp/index.js +7 −8 Go to diff View file
M src/www/themes/common/tlp/angular-tlp/index.spec.js +1 −1 Go to diff View file
M src/www/themes/common/tlp/angular-tlp/tlp-modal-service.js +43 −59 Go to diff View file
M src/www/themes/common/tlp/angular-tlp/tlp-modal-service.spec.js +88 −89 Go to diff View file
M src/www/themes/common/tlp/angular-tlp/tlp-select2-directive.js +3 −3 Go to diff View file
M src/www/themes/common/tlp/doc/js/editors.js +72 −75 Go to diff View file
M src/www/themes/common/tlp/doc/js/main.js +32 −30 Go to diff View file
M src/www/themes/common/tlp/doc/js/polyfills.js +3 −4 Go to diff View file
M src/www/themes/common/tlp/gulpfile.js +97 −89 Go to diff View file
M src/www/themes/common/tlp/mocks/index.js +18 −31 Go to diff View file
M src/www/themes/common/tlp/src/index.en_US.js +3 −3 Go to diff View file
M src/www/themes/common/tlp/src/index.fr_FR.js +6 −9 Go to diff View file
M src/www/themes/common/tlp/src/js/default_locale.js +1 −1 Go to diff View file
M src/www/themes/common/tlp/src/js/dom-walker.js +1 −3 Go to diff View file
M src/www/themes/common/tlp/src/js/dropdowns.js +31 −22 Go to diff View file
M src/www/themes/common/tlp/src/js/fetch-wrapper.js +21 −37 Go to diff View file
M src/www/themes/common/tlp/src/js/filter-inline-table.js +36 −24 Go to diff View file
M src/www/themes/common/tlp/src/js/index.js +8 −21 Go to diff View file
M src/www/themes/common/tlp/src/js/modal.js +31 −30 Go to diff View file
M src/www/themes/common/tlp/src/vendor-overrides/flatpickr.js +7 −7 Go to diff View file
M src/www/themes/common/tlp/src/vendor-overrides/select2.js +8 −8 Go to diff View file
M src/www/themes/common/tlp/webpack.config.js +12 −22 Go to diff View file
M tests/e2e/distlp/cypress/integration/homepage.spec.js +2 −2 Go to diff View file
M tests/e2e/distlp/cypress/integration/svn.spec.js +12 −8 Go to diff View file
M tests/e2e/distlp/cypress/support/commands.js +3 −3 Go to diff View file
M tests/e2e/distlp/cypress/support/index.js +1 −1 Go to diff View file
M tests/e2e/full/cypress/support/index.js +1 −1 Go to diff View file
M tools/utils/scripts/component-builder.js +82 −51 Go to diff View file
M tools/utils/scripts/easygettext-loader.js +1 −1 Go to diff View file
M tools/utils/scripts/ie11-polyfill-names.js +1 −4 Go to diff View file
M tools/utils/scripts/karma-configurator.js +15 −21 Go to diff View file
M tools/utils/scripts/sass-builder.js +27 −25 Go to diff View file
M tools/utils/scripts/tuleap-gulp-build.js +90 −79 Go to diff View file
M tools/utils/scripts/webpack-rule-configs.js +5 −1 Go to diff View file