From dee223311e437688f34c6a462f6887c545a2fca3 Mon Sep 17 00:00:00 2001 From: colin-lamed <9568290+colin-lamed@users.noreply.github.com> Date: Fri, 11 Jan 2019 11:15:08 +0000 Subject: [PATCH 1/7] BDOG-53 make service route violations collapsible --- app/assets/catalogue-frontend.scss | 13 +++- .../serviceRouteRuleViolations.scala.html | 59 +++++++++++-------- 2 files changed, 45 insertions(+), 27 deletions(-) diff --git a/app/assets/catalogue-frontend.scss b/app/assets/catalogue-frontend.scss index ef04f9577..a08c5a678 100644 --- a/app/assets/catalogue-frontend.scss +++ b/app/assets/catalogue-frontend.scss @@ -300,4 +300,15 @@ section { font-size: 9px; } - +.board__heading .accordion-toggle:after { + /* symbol for "opening" panels */ + font-family: 'Glyphicons Halflings'; + content: "\e114"; + float: right; + color: grey; +} + +.board__heading .accordion-toggle.collapsed:after { + /* symbol for "collapsed" panels */ + content: "\e080"; +} \ No newline at end of file diff --git a/app/views/partials/serviceRouteRuleViolations.scala.html b/app/views/partials/serviceRouteRuleViolations.scala.html index 66928fd5b..c11571103 100644 --- a/app/views/partials/serviceRouteRuleViolations.scala.html +++ b/app/views/partials/serviceRouteRuleViolations.scala.html @@ -19,32 +19,39 @@ @(serviceRoutes: ServiceRoutes) @if(CatalogueFrontendSwitches.routingRules.isEnabled && serviceRoutes.hasInconsistentRoutes) { -
-
-

Inconsistent Route Rules

-
- - - - - - - @for(environmentRoute <- serviceRoutes.inconsistentRoutes) { - @for(route <- environmentRoute.routes) { - - - - - } - } - -
EnvironmentRoute Rule
- @environmentRoute.environment - - @route.frontendPath -
- + @defining(if (serviceRoutes.inconsistentRoutes.size > 3) "collapse" else "") { collapse => +
+
+

+ +

+
+
+ + + + + + + @for(environmentRoute <- serviceRoutes.inconsistentRoutes) { + @for(route <- environmentRoute.routes) { + + + + + } + } + +
EnvironmentRoute Rule
+ @environmentRoute.environment + + @route.frontendPath +
+
+
-
+ } } \ No newline at end of file From 0693faf34c9d218d3609973f9d24f03a21fdcb5b Mon Sep 17 00:00:00 2001 From: colin-lamed <9568290+colin-lamed@users.noreply.github.com> Date: Fri, 11 Jan 2019 14:05:07 +0000 Subject: [PATCH 2/7] BDOG-53 apply css updates manually to css file since scss no longer used --- public/catalogue-frontend.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/public/catalogue-frontend.css b/public/catalogue-frontend.css index ee069a789..b24445f5e 100644 --- a/public/catalogue-frontend.css +++ b/public/catalogue-frontend.css @@ -12028,4 +12028,17 @@ section span.other-teams-message { position:relative; z-index:0; width: 100%; +} + +.board__heading .accordion-toggle:after { + /* symbol for "opening" panels */ + font-family: 'Glyphicons Halflings'; + content: "\e114"; + float: right; + color: grey; +} + +.board__heading .accordion-toggle.collapsed:after { + /* symbol for "collapsed" panels */ + content: "\e080"; } \ No newline at end of file From 86d984036dfb37cbd7dbcd9ecab6f3f9d27c83b2 Mon Sep 17 00:00:00 2001 From: colin-lamed <9568290+colin-lamed@users.noreply.github.com> Date: Fri, 11 Jan 2019 14:27:03 +0000 Subject: [PATCH 3/7] BDOG-53 improve service route violations collapse --- app/views/partials/serviceRouteRuleViolations.scala.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/views/partials/serviceRouteRuleViolations.scala.html b/app/views/partials/serviceRouteRuleViolations.scala.html index c11571103..71821878b 100644 --- a/app/views/partials/serviceRouteRuleViolations.scala.html +++ b/app/views/partials/serviceRouteRuleViolations.scala.html @@ -19,15 +19,15 @@ @(serviceRoutes: ServiceRoutes) @if(CatalogueFrontendSwitches.routingRules.isEnabled && serviceRoutes.hasInconsistentRoutes) { - @defining(if (serviceRoutes.inconsistentRoutes.size > 3) "collapse" else "") { collapse => + @defining(serviceRoutes.inconsistentRoutes.size > 3) { collapsable =>

-

-
+
From ade5b55feecd38c52b201141b4d0d3ab3675d339 Mon Sep 17 00:00:00 2001 From: colin-lamed <9568290+colin-lamed@users.noreply.github.com> Date: Fri, 11 Jan 2019 15:15:15 +0000 Subject: [PATCH 4/7] BDOG-53: make Service Urls expandable and collapsed for large lists --- app/views/partials/details.scala.html | 42 +++++++++++++++++---------- public/catalogue-frontend.css | 7 +++-- 2 files changed, 31 insertions(+), 18 deletions(-) diff --git a/app/views/partials/details.scala.html b/app/views/partials/details.scala.html index d870ec141..4969743bb 100644 --- a/app/views/partials/details.scala.html +++ b/app/views/partials/details.scala.html @@ -39,22 +39,34 @@

Details

@if(CatalogueFrontendSwitches.routingRules.isEnabled && environmentRoute.isDefined) { -
    -
  • - -
      - @for((route, index) <- environmentRoute.get.routes.zipWithIndex) { -
    • - @if(route.isRegex) { - @route.frontendPath - } else { - @route.frontendPath - } -
    • - } + @defining(environmentRoute.get.routes.size > 3) { collapsable => +
        +
        +
      • +
        +
        + URL(s): +
        +
        +
        +
        +
          + @for((route, index) <- environmentRoute.get.routes.zipWithIndex) { +
        • + @if(route.isRegex) { + @route.frontendPath + } else { + @route.frontendPath + } +
        • + } +
        +
        +
        +
      • +
      - -
    + } } diff --git a/public/catalogue-frontend.css b/public/catalogue-frontend.css index b24445f5e..f06b83565 100644 --- a/public/catalogue-frontend.css +++ b/public/catalogue-frontend.css @@ -11763,7 +11763,7 @@ h1 { padding-bottom: .2em; border-bottom: 3px solid #008770; } -h1, h2, h3, h4 { +h1, h2, h3, h4, h5 { color: #008770; font-weight: 700; } @@ -11830,6 +11830,7 @@ section span.other-teams-message { .list { overflow: hidden; padding-left: 1.2em; + padding-right: 1.2em; list-style: disc; color: #6f777b; margin-bottom: .4em; } @@ -12030,7 +12031,7 @@ section span.other-teams-message { width: 100%; } -.board__heading .accordion-toggle:after { +.accordion-toggle:after { /* symbol for "opening" panels */ font-family: 'Glyphicons Halflings'; content: "\e114"; @@ -12038,7 +12039,7 @@ section span.other-teams-message { color: grey; } -.board__heading .accordion-toggle.collapsed:after { +.accordion-toggle.collapsed:after { /* symbol for "collapsed" panels */ content: "\e080"; } \ No newline at end of file From 9bcc30a0fecc6b73fe2c53d12cd467d3ce7b90ba Mon Sep 17 00:00:00 2001 From: colin-lamed <9568290+colin-lamed@users.noreply.github.com> Date: Fri, 11 Jan 2019 15:33:53 +0000 Subject: [PATCH 5/7] BDOG-53 apply accordion to code and builds rule configuration urls --- app/views/partials/code_and_builds.scala.html | 23 +++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/app/views/partials/code_and_builds.scala.html b/app/views/partials/code_and_builds.scala.html index 5366519ab..4bd1b2dd2 100644 --- a/app/views/partials/code_and_builds.scala.html +++ b/app/views/partials/code_and_builds.scala.html @@ -33,10 +33,25 @@

    Code and Build

  • @{ciLink.displayName}
  • } @if(CatalogueFrontendSwitches.routingRules.isEnabled && environmentRoute.isDefined) { - @for((route, index) <- environmentRoute.get.routes.zipWithIndex) { -
  • - Routing Configuration: '@route.frontendPath' -
  • + @defining(environmentRoute.get.routes.size > 3) { collapsable => +
    +
    +
    + Routing Configuration(s): +
    +
    +
    +
    +
      + @for((route, index) <- environmentRoute.get.routes.zipWithIndex) { +
    • + @route.frontendPath +
    • + } +
    +
    +
    +
    } }
From b723548653c2a9cf479f317aac84befe2d96b37d Mon Sep 17 00:00:00 2001 From: colin-lamed <9568290+colin-lamed@users.noreply.github.com> Date: Fri, 11 Jan 2019 15:58:45 +0000 Subject: [PATCH 6/7] BDOG-53 bump copyright year --- test/uk/gov/hmrc/cataloguefrontend/AuthControllerSpec.scala | 2 +- .../uk/gov/hmrc/cataloguefrontend/CatalogueControllerSpec.scala | 2 +- test/uk/gov/hmrc/cataloguefrontend/ChartDataSpec.scala | 2 +- .../hmrc/cataloguefrontend/DependencyReportControllerSpec.scala | 2 +- test/uk/gov/hmrc/cataloguefrontend/DeploymentsFilterSpec.scala | 2 +- test/uk/gov/hmrc/cataloguefrontend/DeploymentsServiceSpec.scala | 2 +- test/uk/gov/hmrc/cataloguefrontend/DigitalServicePageSpec.scala | 2 +- test/uk/gov/hmrc/cataloguefrontend/DigitalServicesSpec.scala | 2 +- .../gov/hmrc/cataloguefrontend/DisplayableTeamMembersSpec.scala | 2 +- .../uk/gov/hmrc/cataloguefrontend/IndicatorsConnectorSpec.scala | 2 +- test/uk/gov/hmrc/cataloguefrontend/JsonData.scala | 2 +- test/uk/gov/hmrc/cataloguefrontend/LibrariesSpec.scala | 2 +- test/uk/gov/hmrc/cataloguefrontend/LibraryPageSpec.scala | 2 +- test/uk/gov/hmrc/cataloguefrontend/PrototypePageSpec.scala | 2 +- test/uk/gov/hmrc/cataloguefrontend/PrototypesSpec.scala | 2 +- test/uk/gov/hmrc/cataloguefrontend/ReleaseSpec.scala | 2 +- test/uk/gov/hmrc/cataloguefrontend/RepoTypeSpec.scala | 2 +- test/uk/gov/hmrc/cataloguefrontend/RepositoriesSpec.scala | 2 +- .../uk/gov/hmrc/cataloguefrontend/RepositoryFilteringSpec.scala | 2 +- test/uk/gov/hmrc/cataloguefrontend/RepositoryPageSpec.scala | 2 +- test/uk/gov/hmrc/cataloguefrontend/SearchFilteringSpec.scala | 2 +- test/uk/gov/hmrc/cataloguefrontend/ServiceOwnerSpec.scala | 2 +- test/uk/gov/hmrc/cataloguefrontend/ServicePageSpec.scala | 2 +- test/uk/gov/hmrc/cataloguefrontend/ServicesSpec.scala | 2 +- test/uk/gov/hmrc/cataloguefrontend/TeamServicesSpec.scala | 2 +- test/uk/gov/hmrc/cataloguefrontend/TeamsSpec.scala | 2 +- test/uk/gov/hmrc/cataloguefrontend/UrlHelperSpec.scala | 2 +- test/uk/gov/hmrc/cataloguefrontend/WireMockEndpoints.scala | 2 +- test/uk/gov/hmrc/cataloguefrontend/actions/ActionsSupport.scala | 2 +- .../hmrc/cataloguefrontend/actions/UmpAuthenticatedSpec.scala | 2 +- .../hmrc/cataloguefrontend/actions/VerifySignInStatusSpec.scala | 2 +- .../gov/hmrc/cataloguefrontend/connector/HttpClientStub.scala | 2 +- .../connector/LeakDetectionConnectorSpec.scala | 2 +- .../connector/ServiceDependenciesConnectorSpec.scala | 2 +- .../connector/ServiceDeploymentsConnectorSpec.scala | 2 +- .../connector/TeamsAndRepositoriesConnectorSpec.scala | 2 +- .../connector/UserManagementAuthConnectorSpec.scala | 2 +- .../connector/UserManagementConnectorSpec.scala | 2 +- .../hmrc/cataloguefrontend/connector/model/DependencySpec.scala | 2 +- .../gov/hmrc/cataloguefrontend/events/EventRepositorySpec.scala | 2 +- .../uk/gov/hmrc/cataloguefrontend/events/EventServiceSpec.scala | 2 +- test/uk/gov/hmrc/cataloguefrontend/events/EventSpec.scala | 2 +- test/uk/gov/hmrc/cataloguefrontend/events/EventTypeSpec.scala | 2 +- .../hmrc/cataloguefrontend/events/ReadModelServiceSpec.scala | 2 +- .../gov/hmrc/cataloguefrontend/events/UpdateSchedulerSpec.scala | 2 +- .../uk/gov/hmrc/cataloguefrontend/service/AuthServiceSpec.scala | 2 +- .../cataloguefrontend/service/LeakDetectionServiceSpec.scala | 2 +- .../hmrc/cataloguefrontend/service/RouteRulesServiceSpec.scala | 2 +- test/view/DependenciesSpec.scala | 2 +- test/view/DeploymentsListSpec.scala | 2 +- test/view/StandardLayoutSpec.scala | 2 +- test/view/partials/CodeAndBuildsSpec.scala | 2 +- test/view/partials/DependencySectionSpec.scala | 2 +- test/view/partials/DetailsSpec.scala | 2 +- test/view/partials/GithubBadgeTypeSpec.scala | 2 +- test/view/partials/ServiceRouteRuleViolationsSpec.scala | 2 +- test/view/partials/WithDisplayNameSpec.scala | 2 +- 57 files changed, 57 insertions(+), 57 deletions(-) diff --git a/test/uk/gov/hmrc/cataloguefrontend/AuthControllerSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/AuthControllerSpec.scala index 4b51d180d..8aeb1af02 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/AuthControllerSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/AuthControllerSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/CatalogueControllerSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/CatalogueControllerSpec.scala index f45889f51..a45ec240c 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/CatalogueControllerSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/CatalogueControllerSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/ChartDataSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/ChartDataSpec.scala index 1167b412e..c3840befe 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/ChartDataSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/ChartDataSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/DependencyReportControllerSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/DependencyReportControllerSpec.scala index 3cad6bec0..aefa9fc9c 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/DependencyReportControllerSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/DependencyReportControllerSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/DeploymentsFilterSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/DeploymentsFilterSpec.scala index 37c6b9c89..7feafead2 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/DeploymentsFilterSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/DeploymentsFilterSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/DeploymentsServiceSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/DeploymentsServiceSpec.scala index 816f4f8d4..5b4361c6b 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/DeploymentsServiceSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/DeploymentsServiceSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/DigitalServicePageSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/DigitalServicePageSpec.scala index 0bbad8f31..e2b0950f3 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/DigitalServicePageSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/DigitalServicePageSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/DigitalServicesSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/DigitalServicesSpec.scala index 716be4699..7503a549d 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/DigitalServicesSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/DigitalServicesSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/DisplayableTeamMembersSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/DisplayableTeamMembersSpec.scala index f6ddf0686..cb9a40a99 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/DisplayableTeamMembersSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/DisplayableTeamMembersSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/IndicatorsConnectorSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/IndicatorsConnectorSpec.scala index 4c2f75e9a..cdfb9b7e5 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/IndicatorsConnectorSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/IndicatorsConnectorSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/JsonData.scala b/test/uk/gov/hmrc/cataloguefrontend/JsonData.scala index fe63b802f..2fcf709af 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/JsonData.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/JsonData.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/LibrariesSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/LibrariesSpec.scala index 7042238e7..c6efb8ba7 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/LibrariesSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/LibrariesSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/LibraryPageSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/LibraryPageSpec.scala index 0fa4721e3..a7fff08f5 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/LibraryPageSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/LibraryPageSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/PrototypePageSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/PrototypePageSpec.scala index 8199d5c0b..15f16cb6f 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/PrototypePageSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/PrototypePageSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/PrototypesSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/PrototypesSpec.scala index d9ab37b72..bfb2b3410 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/PrototypesSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/PrototypesSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/ReleaseSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/ReleaseSpec.scala index 487345a98..31faed4fb 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/ReleaseSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/ReleaseSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/RepoTypeSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/RepoTypeSpec.scala index ac43091ba..78eb28388 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/RepoTypeSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/RepoTypeSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/RepositoriesSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/RepositoriesSpec.scala index b4a118f7d..0786b5e9e 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/RepositoriesSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/RepositoriesSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/RepositoryFilteringSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/RepositoryFilteringSpec.scala index 48f5ca06a..0bc980b90 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/RepositoryFilteringSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/RepositoryFilteringSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/RepositoryPageSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/RepositoryPageSpec.scala index 2a019f4c7..a4ad2d8c6 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/RepositoryPageSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/RepositoryPageSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/SearchFilteringSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/SearchFilteringSpec.scala index 987b541aa..07df8b33e 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/SearchFilteringSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/SearchFilteringSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/ServiceOwnerSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/ServiceOwnerSpec.scala index 979db9558..060f8d03b 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/ServiceOwnerSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/ServiceOwnerSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/ServicePageSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/ServicePageSpec.scala index 819039163..064cbeb64 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/ServicePageSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/ServicePageSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/ServicesSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/ServicesSpec.scala index aa5a27d1c..13c55b652 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/ServicesSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/ServicesSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/TeamServicesSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/TeamServicesSpec.scala index bdd183d21..5c3b185a7 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/TeamServicesSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/TeamServicesSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/TeamsSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/TeamsSpec.scala index b8efb7ad7..a14fd1ed5 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/TeamsSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/TeamsSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/UrlHelperSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/UrlHelperSpec.scala index 40b771c1b..93e1e08fe 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/UrlHelperSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/UrlHelperSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/WireMockEndpoints.scala b/test/uk/gov/hmrc/cataloguefrontend/WireMockEndpoints.scala index db3073c70..c4d10f0f3 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/WireMockEndpoints.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/WireMockEndpoints.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/actions/ActionsSupport.scala b/test/uk/gov/hmrc/cataloguefrontend/actions/ActionsSupport.scala index abe316bd0..8ad261c55 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/actions/ActionsSupport.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/actions/ActionsSupport.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/actions/UmpAuthenticatedSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/actions/UmpAuthenticatedSpec.scala index 69d0563bd..e0e62a427 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/actions/UmpAuthenticatedSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/actions/UmpAuthenticatedSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/actions/VerifySignInStatusSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/actions/VerifySignInStatusSpec.scala index ffc03b68f..006dfade9 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/actions/VerifySignInStatusSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/actions/VerifySignInStatusSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/connector/HttpClientStub.scala b/test/uk/gov/hmrc/cataloguefrontend/connector/HttpClientStub.scala index af1722ff0..dd936f1e7 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/connector/HttpClientStub.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/connector/HttpClientStub.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/connector/LeakDetectionConnectorSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/connector/LeakDetectionConnectorSpec.scala index a2d18467c..32e561522 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/connector/LeakDetectionConnectorSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/connector/LeakDetectionConnectorSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/connector/ServiceDependenciesConnectorSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/connector/ServiceDependenciesConnectorSpec.scala index 14b7b082f..81db7ba87 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/connector/ServiceDependenciesConnectorSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/connector/ServiceDependenciesConnectorSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/connector/ServiceDeploymentsConnectorSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/connector/ServiceDeploymentsConnectorSpec.scala index 692dd1af9..553072880 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/connector/ServiceDeploymentsConnectorSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/connector/ServiceDeploymentsConnectorSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/connector/TeamsAndRepositoriesConnectorSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/connector/TeamsAndRepositoriesConnectorSpec.scala index 7b8daadd2..08d733753 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/connector/TeamsAndRepositoriesConnectorSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/connector/TeamsAndRepositoriesConnectorSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/connector/UserManagementAuthConnectorSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/connector/UserManagementAuthConnectorSpec.scala index ea881faf1..9e08d8a01 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/connector/UserManagementAuthConnectorSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/connector/UserManagementAuthConnectorSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/connector/UserManagementConnectorSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/connector/UserManagementConnectorSpec.scala index 4b3b2a95b..90a1a3b67 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/connector/UserManagementConnectorSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/connector/UserManagementConnectorSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/connector/model/DependencySpec.scala b/test/uk/gov/hmrc/cataloguefrontend/connector/model/DependencySpec.scala index ed5101703..4949b258f 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/connector/model/DependencySpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/connector/model/DependencySpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/events/EventRepositorySpec.scala b/test/uk/gov/hmrc/cataloguefrontend/events/EventRepositorySpec.scala index 44e232524..f115e805e 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/events/EventRepositorySpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/events/EventRepositorySpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/events/EventServiceSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/events/EventServiceSpec.scala index 2cd2ccecf..78b0659d1 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/events/EventServiceSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/events/EventServiceSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/events/EventSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/events/EventSpec.scala index 02e2600c1..e0d47f316 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/events/EventSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/events/EventSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/events/EventTypeSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/events/EventTypeSpec.scala index c4febd03c..4cc9228c2 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/events/EventTypeSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/events/EventTypeSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/events/ReadModelServiceSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/events/ReadModelServiceSpec.scala index 9d949376a..12856f254 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/events/ReadModelServiceSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/events/ReadModelServiceSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/events/UpdateSchedulerSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/events/UpdateSchedulerSpec.scala index 5140b7c92..286b5cbed 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/events/UpdateSchedulerSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/events/UpdateSchedulerSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/service/AuthServiceSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/service/AuthServiceSpec.scala index f61bf6703..04b17c34f 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/service/AuthServiceSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/service/AuthServiceSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/service/LeakDetectionServiceSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/service/LeakDetectionServiceSpec.scala index 3547cdb2a..d7bce0ad3 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/service/LeakDetectionServiceSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/service/LeakDetectionServiceSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/uk/gov/hmrc/cataloguefrontend/service/RouteRulesServiceSpec.scala b/test/uk/gov/hmrc/cataloguefrontend/service/RouteRulesServiceSpec.scala index 9c1ce3452..6def34966 100644 --- a/test/uk/gov/hmrc/cataloguefrontend/service/RouteRulesServiceSpec.scala +++ b/test/uk/gov/hmrc/cataloguefrontend/service/RouteRulesServiceSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/view/DependenciesSpec.scala b/test/view/DependenciesSpec.scala index f362b57c6..c6f5abe37 100644 --- a/test/view/DependenciesSpec.scala +++ b/test/view/DependenciesSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/view/DeploymentsListSpec.scala b/test/view/DeploymentsListSpec.scala index 0d3247f53..5b8dc37dd 100644 --- a/test/view/DeploymentsListSpec.scala +++ b/test/view/DeploymentsListSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/view/StandardLayoutSpec.scala b/test/view/StandardLayoutSpec.scala index d1f2f15de..b331a8743 100644 --- a/test/view/StandardLayoutSpec.scala +++ b/test/view/StandardLayoutSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/view/partials/CodeAndBuildsSpec.scala b/test/view/partials/CodeAndBuildsSpec.scala index 5ec88b44f..c37e8218d 100644 --- a/test/view/partials/CodeAndBuildsSpec.scala +++ b/test/view/partials/CodeAndBuildsSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/view/partials/DependencySectionSpec.scala b/test/view/partials/DependencySectionSpec.scala index f0f86bff5..b9ae20e76 100644 --- a/test/view/partials/DependencySectionSpec.scala +++ b/test/view/partials/DependencySectionSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/view/partials/DetailsSpec.scala b/test/view/partials/DetailsSpec.scala index f99fb632c..f1089fbfb 100644 --- a/test/view/partials/DetailsSpec.scala +++ b/test/view/partials/DetailsSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/view/partials/GithubBadgeTypeSpec.scala b/test/view/partials/GithubBadgeTypeSpec.scala index 1c6c56336..cba58d853 100644 --- a/test/view/partials/GithubBadgeTypeSpec.scala +++ b/test/view/partials/GithubBadgeTypeSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/view/partials/ServiceRouteRuleViolationsSpec.scala b/test/view/partials/ServiceRouteRuleViolationsSpec.scala index 1475ea2db..3abf55d24 100644 --- a/test/view/partials/ServiceRouteRuleViolationsSpec.scala +++ b/test/view/partials/ServiceRouteRuleViolationsSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/view/partials/WithDisplayNameSpec.scala b/test/view/partials/WithDisplayNameSpec.scala index ccba338eb..7897f388e 100644 --- a/test/view/partials/WithDisplayNameSpec.scala +++ b/test/view/partials/WithDisplayNameSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 HM Revenue & Customs + * Copyright 2019 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. From ac7893147110d4ff0182232f12e4e2a90151494f Mon Sep 17 00:00:00 2001 From: colin-lamed <9568290+colin-lamed@users.noreply.github.com> Date: Fri, 11 Jan 2019 15:59:26 +0000 Subject: [PATCH 7/7] BDOG-53 remove superfluous css --- catalogue-frontend.css | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 catalogue-frontend.css diff --git a/catalogue-frontend.css b/catalogue-frontend.css deleted file mode 100644 index 3ab5ecb3a..000000000 --- a/catalogue-frontend.css +++ /dev/null @@ -1,25 +0,0 @@ -/* -Errno::ENOENT: No such file or directory @ rb_sysopen - catalogue-frontend.scss - -Backtrace: -/home/pete/.rvm/gems/ruby-2.1.8/gems/sass-3.4.22/lib/sass/plugin/compiler.rb:484:in `read' -/home/pete/.rvm/gems/ruby-2.1.8/gems/sass-3.4.22/lib/sass/plugin/compiler.rb:484:in `update_stylesheet' -/home/pete/.rvm/gems/ruby-2.1.8/gems/sass-3.4.22/lib/sass/plugin/compiler.rb:215:in `block in update_stylesheets' -/home/pete/.rvm/gems/ruby-2.1.8/gems/sass-3.4.22/lib/sass/plugin/compiler.rb:209:in `each' -/home/pete/.rvm/gems/ruby-2.1.8/gems/sass-3.4.22/lib/sass/plugin/compiler.rb:209:in `update_stylesheets' -/home/pete/.rvm/gems/ruby-2.1.8/gems/sass-3.4.22/lib/sass/plugin/compiler.rb:294:in `watch' -/home/pete/.rvm/gems/ruby-2.1.8/gems/sass-3.4.22/lib/sass/plugin.rb:109:in `method_missing' -/home/pete/.rvm/gems/ruby-2.1.8/gems/sass-3.4.22/lib/sass/exec/sass_scss.rb:360:in `watch_or_update' -/home/pete/.rvm/gems/ruby-2.1.8/gems/sass-3.4.22/lib/sass/exec/sass_scss.rb:51:in `process_result' -/home/pete/.rvm/gems/ruby-2.1.8/gems/sass-3.4.22/lib/sass/exec/base.rb:52:in `parse' -/home/pete/.rvm/gems/ruby-2.1.8/gems/sass-3.4.22/lib/sass/exec/base.rb:19:in `parse!' -/home/pete/.rvm/gems/ruby-2.1.8/gems/sass-3.4.22/bin/scss:13:in `' -/home/pete/.rvm/gems/ruby-2.1.8/bin/scss:23:in `load' -/home/pete/.rvm/gems/ruby-2.1.8/bin/scss:23:in `
' -/home/pete/.rvm/gems/ruby-2.1.8/bin/ruby_executable_hooks:15:in `eval' -/home/pete/.rvm/gems/ruby-2.1.8/bin/ruby_executable_hooks:15:in `
' -*/ -body:before { - white-space: pre; - font-family: monospace; - content: "Errno::ENOENT: No such file or directory @ rb_sysopen - catalogue-frontend.scss"; }