diff --git a/interactive-mining-angular-frontend/src/app/contents/contents.component.ts b/interactive-mining-angular-frontend/src/app/contents/contents.component.ts index 04567c5..875cdb1 100755 --- a/interactive-mining-angular-frontend/src/app/contents/contents.component.ts +++ b/interactive-mining-angular-frontend/src/app/contents/contents.component.ts @@ -89,7 +89,6 @@ export class ContentComponent implements OnInit { onFilesChange(file: File) { if (file !== null && file !== undefined) { - console.log(file); const ext = file.name.split('.')[file.name.split('.').length - 1]; const allowedExtensions = ['tsv', 'txt']; if (allowedExtensions.lastIndexOf(ext) !== -1 && file.size <= 51200) { @@ -121,7 +120,6 @@ export class ContentComponent implements OnInit { } promptToLeave(nextUrl: string): boolean { - console.log(nextUrl); if (nextUrl.indexOf('upload-content') >= 0 || nextUrl.indexOf('configure-profile') >= 0 || nextUrl.indexOf('save-profile') >= 0) { return true; } else { diff --git a/interactive-mining-angular-frontend/src/app/manageprofiles/manageprofiles.component.ts b/interactive-mining-angular-frontend/src/app/manageprofiles/manageprofiles.component.ts index 3c7cbae..cdb2b25 100755 --- a/interactive-mining-angular-frontend/src/app/manageprofiles/manageprofiles.component.ts +++ b/interactive-mining-angular-frontend/src/app/manageprofiles/manageprofiles.component.ts @@ -50,7 +50,6 @@ export class ManageprofilesComponent implements OnInit { this.route.queryParams .subscribe( params => { - // console.log('queryParams', params['communityId']); this.communityId = params['communityId']; this.initialServerHandshake(this.communityId); }); @@ -89,7 +88,6 @@ export class ManageprofilesComponent implements OnInit { private getExampleProfiles(): void { this.manageProfilesService.getExampleProfiles() .subscribe(res => { - console.log(res); this.exampleProfiles = res; }); } @@ -154,7 +152,6 @@ export class ManageprofilesComponent implements OnInit { loadSavedProfile(id: string, name: string): void { this.manageProfilesService.loadSavedProfile(id) .subscribe(res => { - console.log(res); // clear localstorage values this.clearLocalStorage(); // store to client all profile data @@ -209,7 +206,6 @@ export class ManageprofilesComponent implements OnInit { // get new profile data this.manageProfilesService.uploadFile(file) .subscribe(res => { - console.log(res); localStorage.setItem('concepts', res.concepts); localStorage.setItem('poswords', JSON.stringify(res.poswords)); localStorage.setItem('negwords', JSON.stringify(res.negwords)); @@ -248,7 +244,6 @@ export class ManageprofilesComponent implements OnInit { // get new profile data this.manageProfilesService.loadExampleProfile(name) .subscribe(res => { - console.log(res); localStorage.setItem('concepts', res.concepts); localStorage.setItem('docname', res.docname); localStorage.setItem('docsnumber', res.docsnumber); diff --git a/interactive-mining-angular-frontend/src/app/stepsnvabar/stepsnvabar.component.html b/interactive-mining-angular-frontend/src/app/stepsnvabar/stepsnvabar.component.html index 3a9033b..0acd050 100755 --- a/interactive-mining-angular-frontend/src/app/stepsnvabar/stepsnvabar.component.html +++ b/interactive-mining-angular-frontend/src/app/stepsnvabar/stepsnvabar.component.html @@ -23,9 +23,11 @@ -
-
- This functionality is not yet fully integrated, stay tuned! +
+ +
+ Manage text mining rules, test the rules and see the results, save and load mining profiles.
+ These algorithms mine full-texts to identify links between literature and your research initiative, to appear in your dashboard.