You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by sh...@apache.org on 2022/02/09 20:24:46 UTC

[trafficcontrol] branch master updated (1c6c9b8 -> 932de18)

This is an automated email from the ASF dual-hosted git repository.

shamrick pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git.


    from 1c6c9b8  Add struct field names to Traffic Ops Routes (#6545)
     add 932de18  TPv2 Testing improvements (#6513)

No new revisions were added by this update.

Summary of changes:
 experimental/traffic-portal/.eslintrc.json         |   83 +-
 experimental/traffic-portal/angular.json           |    1 +
 .../documentation.styles/style.css}                |   23 +-
 experimental/traffic-portal/karma.conf.js          |    7 +-
 experimental/traffic-portal/package-lock.json      | 8243 ++++++++++++--------
 experimental/traffic-portal/package.json           |   65 +-
 experimental/traffic-portal/server.ts              |    7 +-
 .../api/APIService.ts => api/base-api.service.ts}  |    9 +-
 .../cache-group.service.ts}                        |    9 +-
 .../api/CDNService.ts => api/cdn.service.ts}       |   18 +-
 .../delivery-service.service.ts}                   |   30 +-
 experimental/traffic-portal/src/app/api/index.ts   |   59 +
 .../invalidation-job.service.ts}                   |   16 +-
 .../physical-location.service.ts}                  |   10 +-
 .../ProfileService.ts => api/profile.service.ts}   |    6 +-
 .../api/ServerService.ts => api/server.service.ts} |    4 +-
 .../src/app/api/testing/cache-group.service.ts     |  118 +
 .../CDNService.ts => api/testing/cdn.service.ts}   |   70 +-
 .../app/api/testing/delivery-service.service.ts    |  444 ++
 .../traffic-portal/src/app/api/testing/index.ts    |   61 +
 .../testing/invalidation-job.service.ts}           |   99 +-
 .../testing/physical-location.service.ts}          |   53 +-
 .../src/app/api/testing/profile.service.ts         |  177 +
 .../src/app/api/testing/server.service.ts          |  262 +
 .../src/app/api/testing/type.service.ts            |  186 +
 .../src/app/api/testing/user.service.ts            |  264 +
 .../api/TypeService.ts => api/type.service.ts}     |    5 +-
 .../api/UserService.ts => api/user.service.ts}     |   12 +-
 .../traffic-portal/src/app/app-routing.module.ts   |    8 +-
 .../traffic-portal/src/app/app.component.spec.ts   |   40 +-
 .../traffic-portal/src/app/app.component.ts        |    7 +-
 experimental/traffic-portal/src/app/app.module.ts  |   12 +-
 .../traffic-portal/src/app/app.ui.module.ts        |   32 +-
 .../cache-group-table.component.spec.ts            |   32 +-
 .../cache-group-table.component.ts                 |   19 +-
 .../traffic-portal/src/app/core/core.module.ts     |   68 +-
 .../core/currentuser/currentuser.component.spec.ts |  154 +-
 .../app/core/currentuser/currentuser.component.ts  |   42 +-
 .../update-password-dialog.component.html          |    2 +-
 .../update-password-dialog.component.spec.ts       |    6 +-
 .../update-password-dialog.component.ts            |    2 +-
 .../app/core/dashboard/dashboard.component.spec.ts |   99 +-
 .../src/app/core/dashboard/dashboard.component.ts  |   20 +-
 .../deliveryservice.component.spec.ts              |  146 +-
 .../deliveryservice/deliveryservice.component.ts   |   26 +-
 .../src/app/core/ds-card/ds-card.component.spec.ts |   75 +-
 .../src/app/core/ds-card/ds-card.component.ts      |   32 +-
 .../invalidation-jobs.component.spec.ts            |  128 +-
 .../invalidation-jobs.component.ts                 |    7 +-
 .../new-invalidation-job-dialog.component.html     |    2 +-
 .../new-invalidation-job-dialog.component.spec.ts  |  158 +-
 .../new-invalidation-job-dialog.component.ts       |   30 +-
 .../new-delivery-service.component.spec.ts         |  130 +-
 .../new-delivery-service.component.ts              |  201 +-
 .../server-details.component.spec.ts               |  124 +-
 .../server-details/server-details.component.ts     |    7 +-
 .../servers-table/servers-table.component.spec.ts  |  215 +-
 .../servers-table/servers-table.component.ts       |   58 +-
 .../update-status/update-status.component.spec.ts  |  118 +-
 .../update-status/update-status.component.ts       |   31 +-
 .../src/app/core/users/users.component.spec.ts     |   93 +-
 .../src/app/core/users/users.component.ts          |   10 +-
 .../src/app/guards/authenticated-guard.service.ts  |    7 +-
 ...n.guard.spec.ts => authenticated.guard.spec.ts} |   24 +-
 .../src/app/login/login.component.spec.ts          |  106 +-
 .../src/app/login/login.component.ts               |    5 +-
 .../reset-password-dialog.component.spec.ts        |   19 +-
 .../reset-password-dialog.component.ts             |    3 +-
 .../src/app/models/deliveryservice.ts              |    3 +-
 .../traffic-portal/src/app/models/models.spec.ts   |    2 +-
 experimental/traffic-portal/src/app/models/user.ts |   39 +-
 .../src/app/shared/alert/alert.component.spec.ts   |   34 +-
 .../src/app/shared/alert/alert.component.ts        |    5 +-
 .../src/app/shared/alert/alert.service.ts          |    7 +-
 .../traffic-portal/src/app/shared/api/index.ts     |   22 -
 .../app/shared/charts/linechart.directive.spec.ts  |   31 +-
 .../src/app/shared/charts/linechart.directive.ts   |   18 +-
 .../currentUser/current-user.service.spec.ts       |  123 +-
 .../app/shared/currentUser/current-user.service.ts |   36 +-
 .../generic-table/generic-table.component.spec.ts  |  334 +-
 .../generic-table/generic-table.component.ts       |   68 +-
 .../app/shared/interceptor/alerts.interceptor.ts   |   10 +-
 .../app/shared/interceptor/error.interceptor.ts    |   10 +-
 .../app/shared/openable/openable.directive.spec.ts |   23 -
 .../src/app/shared/openable/openable.directive.ts  |   70 -
 .../traffic-portal/src/app/shared/shared.module.ts |   67 +-
 .../boolean-filter.component.spec.ts               |   53 +
 .../boolean-filter/boolean-filter.component.ts     |    4 +-
 .../ssh-cell-renderer.component.spec.ts            |   33 +-
 .../ssh-cell-renderer.component.ts                 |    3 +-
 .../update-cell-renderer.component.spec.ts         |   22 +
 .../shared/tp-header/tp-header.component.spec.ts   |   29 +-
 .../app/shared/tp-header/tp-header.component.ts    |   24 +-
 .../validation/customvalidity.directive.spec.ts    |  122 +-
 .../shared/validation/customvalidity.directive.ts  |   25 +-
 .../traffic-portal/src/app/utils/file-utils.ts     |   55 -
 experimental/traffic-portal/src/app/utils/index.ts |    1 -
 .../traffic-portal/src/app/utils/order-by.spec.ts  |   21 +
 .../traffic-portal/src/app/utils/order-by.ts       |   17 +-
 experimental/traffic-portal/src/polyfills.ts       |    1 -
 .../{tsconfig.app.json => tsconfig.doc.json}       |    6 +-
 experimental/traffic-portal/tsconfig.json          |    5 +-
 experimental/traffic-portal/tsconfig.spec.json     |    3 +-
 103 files changed, 9471 insertions(+), 4494 deletions(-)
 copy experimental/{traffic_router_golang/crconfigdsservers/crconfigdsservers.go => traffic-portal/documentation.styles/style.css} (73%)
 rename experimental/traffic-portal/src/app/{shared/api/APIService.ts => api/base-api.service.ts} (97%)
 rename experimental/traffic-portal/src/app/{shared/api/CacheGroupService.ts => api/cache-group.service.ts} (92%)
 copy experimental/traffic-portal/src/app/{shared/api/CDNService.ts => api/cdn.service.ts} (89%)
 rename experimental/traffic-portal/src/app/{shared/api/DeliveryServiceService.ts => api/delivery-service.service.ts} (97%)
 create mode 100644 experimental/traffic-portal/src/app/api/index.ts
 copy experimental/traffic-portal/src/app/{shared/api/InvalidationJobService.ts => api/invalidation-job.service.ts} (90%)
 copy experimental/traffic-portal/src/app/{shared/api/PhysicalLocationService.ts => api/physical-location.service.ts} (88%)
 rename experimental/traffic-portal/src/app/{shared/api/ProfileService.ts => api/profile.service.ts} (93%)
 rename experimental/traffic-portal/src/app/{shared/api/ServerService.ts => api/server.service.ts} (98%)
 create mode 100644 experimental/traffic-portal/src/app/api/testing/cache-group.service.ts
 rename experimental/traffic-portal/src/app/{shared/api/CDNService.ts => api/testing/cdn.service.ts} (57%)
 create mode 100644 experimental/traffic-portal/src/app/api/testing/delivery-service.service.ts
 create mode 100644 experimental/traffic-portal/src/app/api/testing/index.ts
 rename experimental/traffic-portal/src/app/{shared/api/InvalidationJobService.ts => api/testing/invalidation-job.service.ts} (52%)
 rename experimental/traffic-portal/src/app/{shared/api/PhysicalLocationService.ts => api/testing/physical-location.service.ts} (65%)
 create mode 100644 experimental/traffic-portal/src/app/api/testing/profile.service.ts
 create mode 100644 experimental/traffic-portal/src/app/api/testing/server.service.ts
 create mode 100644 experimental/traffic-portal/src/app/api/testing/type.service.ts
 create mode 100644 experimental/traffic-portal/src/app/api/testing/user.service.ts
 rename experimental/traffic-portal/src/app/{shared/api/TypeService.ts => api/type.service.ts} (96%)
 rename experimental/traffic-portal/src/app/{shared/api/UserService.ts => api/user.service.ts} (97%)
 rename experimental/traffic-portal/src/app/guards/{authentication.guard.spec.ts => authenticated.guard.spec.ts} (63%)
 delete mode 100644 experimental/traffic-portal/src/app/shared/api/index.ts
 delete mode 100644 experimental/traffic-portal/src/app/shared/openable/openable.directive.spec.ts
 delete mode 100644 experimental/traffic-portal/src/app/shared/openable/openable.directive.ts
 delete mode 100644 experimental/traffic-portal/src/app/utils/file-utils.ts
 copy experimental/traffic-portal/{tsconfig.app.json => tsconfig.doc.json} (70%)