diff --git a/portal-2/src/app/app.component.ts b/portal-2/src/app/app.component.ts index 86a36690..f67776a5 100644 --- a/portal-2/src/app/app.component.ts +++ b/portal-2/src/app/app.component.ts @@ -29,7 +29,7 @@ export class XLargeDirective { -
+
diff --git a/portal-2/src/app/claims/claim-utils/claimResultSearchForm.component.html b/portal-2/src/app/claims/claim-utils/claimResultSearchForm.component.html index 8da2d8b8..e27c7560 100644 --- a/portal-2/src/app/claims/claim-utils/claimResultSearchForm.component.html +++ b/portal-2/src/app/claims/claim-utils/claimResultSearchForm.component.html @@ -1,20 +1,18 @@
Search for research results: -
- + -
-
    +
    • - {{item.title}} + {{item.title}} {{item.title}} - +
      @@ -44,7 +42,7 @@
-
  • +
  • @@ -56,12 +54,12 @@
  • -
      +
      • {{result['title'].name}} {{result['title'].name}} - +
        @@ -72,7 +70,7 @@
    -
  • +
  • @@ -92,7 +90,7 @@
    Results for - {{authorGivenName}} {{authorFamilyName}} - {{authorId}} : + {{authorGivenName}} {{authorFamilyName}} - {{authorId}} :
    @@ -102,11 +100,11 @@
    -
      +
      • {{item['work-title']['title'].value}} - +
        @@ -118,7 +116,7 @@
  • -
  • +
  • @@ -130,12 +128,12 @@
    -
  • -
  • +
  • @@ -159,15 +157,15 @@
    -

    @@ -62,14 +62,14 @@ - + - + @@ -79,7 +79,7 @@ - + diff --git a/portal-2/src/app/claims/claim-utils/displayClaims/displayClaims.component.ts b/portal-2/src/app/claims/claim-utils/displayClaims/displayClaims.component.ts index ef5fea12..1765d00d 100644 --- a/portal-2/src/app/claims/claim-utils/displayClaims/displayClaims.component.ts +++ b/portal-2/src/app/claims/claim-utils/displayClaims/displayClaims.component.ts @@ -53,6 +53,7 @@ export class DisplayClaimsComponent { sub: any; //string because comes as input from component directive @Input() enableDelete: boolean = false; + @Input() showUserEmail: boolean = true; @Input() myClaims: boolean= false ; @Input() isAdmin:boolean = false; page : number; @@ -330,18 +331,21 @@ export class DisplayClaimsComponent { } } - selectAll(){ - this.selected = []; - for (var _i = 0; _i < this.claims.length; _i++) { - let claim = this.claims[_i]; - this.selected.push(claim); - } - this.deleteMessage = ""; - } - deselectAll(){ - this.selected = []; - this.deleteMessage=""; + selectAll(event){ + var value = event.currentTarget.checked; + if(value){ + this.selected = []; + for (var _i = 0; _i < this.claims.length; _i++) { + let claim = this.claims[_i]; + this.selected.push(claim); + } + this.deleteMessage = ""; + }else{ + this.selected = []; + this.deleteMessage=""; + } } + isSelected(id:string){ for (var _i = 0; _i < this.selected.length; _i++) { let claim = this.selected[_i]; diff --git a/portal-2/src/app/claims/claim-utils/entityFormatter/publicationTitleFormatter.component.ts b/portal-2/src/app/claims/claim-utils/entityFormatter/publicationTitleFormatter.component.ts index 615bfd03..253e359b 100644 --- a/portal-2/src/app/claims/claim-utils/entityFormatter/publicationTitleFormatter.component.ts +++ b/portal-2/src/app/claims/claim-utils/entityFormatter/publicationTitleFormatter.component.ts @@ -6,7 +6,7 @@ import {Component, Input} from '@angular/core'; selector: 'publication-title', template: `
    -
    {{title}}
    +
    {{title}}
    {{title}}
    ` diff --git a/portal-2/src/app/claims/claim-utils/startOver.component.ts b/portal-2/src/app/claims/claim-utils/startOver.component.ts index 2fc9117d..281cc6d3 100644 --- a/portal-2/src/app/claims/claim-utils/startOver.component.ts +++ b/portal-2/src/app/claims/claim-utils/startOver.component.ts @@ -4,7 +4,7 @@ import {ClaimResult} from '../claim-utils/claimEntities.class'; @Component({ selector: 'start-over', - template: ``, + template: ``, }) export class StartOverComponent { diff --git a/portal-2/src/app/claims/directLinking/directLinking.component.ts b/portal-2/src/app/claims/directLinking/directLinking.component.ts index e8021acd..f888d909 100644 --- a/portal-2/src/app/claims/directLinking/directLinking.component.ts +++ b/portal-2/src/app/claims/directLinking/directLinking.component.ts @@ -25,7 +25,7 @@ import {SearchDatasetsService} from '../../services/searchDatasets.service';
    - {{displayedResult.title}} + {{displayedResult.title}} {{displayedResult.title}}
    @@ -38,6 +38,8 @@ import {SearchDatasetsService} from '../../services/searchDatasets.service'; {{projects[0].funderName}} | {{projects[0].projectName}} {{(projects[0].projectAcronym)?'('+projects[0].projectAcronym+')':''}}
    +
    +
    @@ -62,8 +64,8 @@ import {SearchDatasetsService} from '../../services/searchDatasets.service';
    diff --git a/portal-2/src/app/claims/linking/bulkClaim/bulkClaim.component.ts b/portal-2/src/app/claims/linking/bulkClaim/bulkClaim.component.ts index 96844221..0eff8a36 100644 --- a/portal-2/src/app/claims/linking/bulkClaim/bulkClaim.component.ts +++ b/portal-2/src/app/claims/linking/bulkClaim/bulkClaim.component.ts @@ -8,13 +8,13 @@ import {Dates, DOI} from '../../../utils/string-utils.class'; @Component({ selector: 'bulk-claim', template: ` -
    +
    Upload a DOI csv file:
    - + ` diff --git a/portal-2/src/app/claims/linking/linkingGeneric.component.ts b/portal-2/src/app/claims/linking/linkingGeneric.component.ts index 9d548286..af71f0ec 100644 --- a/portal-2/src/app/claims/linking/linkingGeneric.component.ts +++ b/portal-2/src/app/claims/linking/linkingGeneric.component.ts @@ -13,27 +13,45 @@ import {SearchDatasetsService} from '../../services/searchDatasets.service'; - -
      -
    • Previous
    • -
    • Next
    • -
    • + + + + -
      -
      - -
      -
      - -
      -
      + + +
        +
      • + +
      • +
      • + +
      • + + +
      + +
      @@ -43,15 +61,15 @@ import {SearchDatasetsService} from '../../services/searchDatasets.service'; -
      @@ -136,7 +154,7 @@ export class LinkingGenericComponent { this.show=$event.value; this.showChangedType($event.value); } - + showChangedType(type:string) { this.show=type; if(this.show == 'project' || this.show == 'context' || this.show == 'software'){ diff --git a/portal-2/src/app/claims/linking/selected/selectedContexts.component.ts b/portal-2/src/app/claims/linking/selected/selectedContexts.component.ts index 159bc68c..f121e7f4 100644 --- a/portal-2/src/app/claims/linking/selected/selectedContexts.component.ts +++ b/portal-2/src/app/claims/linking/selected/selectedContexts.component.ts @@ -7,13 +7,13 @@ import {ClaimContext} from '../../claim-utils/claimEntities.class'; -
        + +
        -
          +
          • {{context.community }} > {{context.category}} > {{context.concept.label}} @@ -21,9 +21,9 @@ import {ClaimContext} from '../../claim-utils/claimEntities.class';
          There are no communities
          -
        + ` diff --git a/portal-2/src/app/claims/linking/selected/selectedProjects.component.ts b/portal-2/src/app/claims/linking/selected/selectedProjects.component.ts index 5669933f..8fb4c04e 100644 --- a/portal-2/src/app/claims/linking/selected/selectedProjects.component.ts +++ b/portal-2/src/app/claims/linking/selected/selectedProjects.component.ts @@ -6,23 +6,23 @@ import {RouterHelper} from '../../../utils/routerHelper.class'; selector: 'claim-selected-projects', template: ` -
    - + ` diff --git a/portal-2/src/app/claims/linking/selected/selectedResults.component.ts b/portal-2/src/app/claims/linking/selected/selectedResults.component.ts index 35898325..b0e2e066 100644 --- a/portal-2/src/app/claims/linking/selected/selectedResults.component.ts +++ b/portal-2/src/app/claims/linking/selected/selectedResults.component.ts @@ -27,13 +27,13 @@ import {Dates} from '../../../utils/string-utils.class';
    There are no research results
    -
    - +
    diff --git a/portal-2/src/app/deposit/datasets/depositDatasetsResult.component.ts b/portal-2/src/app/deposit/datasets/depositDatasetsResult.component.ts index 8f62b636..edbe92db 100644 --- a/portal-2/src/app/deposit/datasets/depositDatasetsResult.component.ts +++ b/portal-2/src/app/deposit/datasets/depositDatasetsResult.component.ts @@ -4,6 +4,8 @@ import {Component} from '@angular/core'; selector: 'deposit-datasets-result', template: ` + + ` }) diff --git a/portal-2/src/app/deposit/deposit.component.ts b/portal-2/src/app/deposit/deposit.component.ts index 9ab70d9d..ff89c98c 100644 --- a/portal-2/src/app/deposit/deposit.component.ts +++ b/portal-2/src/app/deposit/deposit.component.ts @@ -19,16 +19,16 @@ import { Meta} from '../../angular2-meta'; Are you a grant recipient from the following: H2020; FP7 with SC39; or ERC? Then you are required to publish in - open access (). + open access (). One way to do this is to deposit your {{requestFor}} into an - open access repository (). + open access repository ().

    Click the following to find more information: - FP7 guidelines (), - H2020 guidelines (), - ERC guidelines () OR - ask a question () to OpenAIRE’s national representative. + FP7 guidelines (), + H2020 guidelines (), + ERC guidelines () OR + ask a question () to OpenAIRE’s national representative.

    Locate data provider via your institution

    diff --git a/portal-2/src/app/deposit/depositResult.component.ts b/portal-2/src/app/deposit/depositResult.component.ts index b50e8846..2ea24d16 100644 --- a/portal-2/src/app/deposit/depositResult.component.ts +++ b/portal-2/src/app/deposit/depositResult.component.ts @@ -30,7 +30,7 @@ import {RouterHelper} from '../utils/routerHelper.class';

    Data providers for institution: - {{organization['name']}} () + {{organization['name']}} () {{organization['name']}}

    @@ -82,7 +82,7 @@ import {RouterHelper} from '../utils/routerHelper.class'; You can still deposit your {{requestFor}} in - OpenAIRE's Zenodo catch-all repository () + OpenAIRE's Zenodo catch-all repository () hosted by CERN. diff --git a/portal-2/src/app/landingPages/dataProvider/dataProvider.component.html b/portal-2/src/app/landingPages/dataProvider/dataProvider.component.html index 942f6d2a..0c67aa9d 100644 --- a/portal-2/src/app/landingPages/dataProvider/dataProvider.component.html +++ b/portal-2/src/app/landingPages/dataProvider/dataProvider.component.html @@ -7,7 +7,7 @@
    -
    {{_formatName(value)}}
    ({{value.number}})
    +
    {{_formatName(value)}}
    ({{value.number}})
  • View more
  • + diff --git a/portal-2/src/app/searchPages/searchUtils/searchPage.component.ts b/portal-2/src/app/searchPages/searchUtils/searchPage.component.ts index bd790fbb..b5869e04 100644 --- a/portal-2/src/app/searchPages/searchUtils/searchPage.component.ts +++ b/portal-2/src/app/searchPages/searchUtils/searchPage.component.ts @@ -24,23 +24,23 @@ import {SearchFilterModalComponent} from './searchFilterModal.component';
    - Keywords:{{searchUtils.keyword}} + Keywords: {{searchUtils.keyword}} {{filter.title}}: - {{value.name}} + {{value.name}} , - Clear Filters[] + + Clear All +
    More search options
    -
    - -
    +
    @@ -50,6 +50,9 @@ import {SearchFilterModalComponent} from './searchFilterModal.component'; [type]="entityType" [urlParam]="urlParam">
    +
    + +
    diff --git a/portal-2/src/app/searchPages/searchUtils/searchResult.component.ts b/portal-2/src/app/searchPages/searchUtils/searchResult.component.ts index 15f8b3ed..a55eab05 100644 --- a/portal-2/src/app/searchPages/searchUtils/searchResult.component.ts +++ b/portal-2/src/app/searchPages/searchUtils/searchResult.component.ts @@ -6,7 +6,7 @@ import {RouterHelper} from '../../utils/routerHelper.class'; @Component({ selector: 'search-result', template: ` -
    Research Result Link to Claimed by Claimed by Claimed Date
    {{claim.userMail}}{{claim.userMail}} {{claim.date}}